Blame tcar-scripts/tcar_printHelp.sh

Alain Reguera Delgado 66223d
#!/bin/bash
Alain Reguera Delgado 66223d
######################################################################
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
#   tcar_printHelp.sh -- This function standardizes the way
Alain Reguera Delgado 66223d
#   tcar.sh script prints help about itself.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
#   Written by:
Alain Reguera Delgado 66223d
#   * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# Copyright (C) 2009-2013 The CentOS Artwork SIG
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 66223d
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 66223d
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 66223d
# your option) any later version.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 66223d
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 66223d
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 66223d
# General Public License for more details.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 66223d
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 66223d
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 66223d
#
Alain Reguera Delgado 66223d
######################################################################
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
function tcar_printHelp {
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Retrieve the man page name. This is the file name you want to retrieve
Alain Reguera Delgado 66223d
    # documentation for. This value is optional. When it is not passed, the
Alain Reguera Delgado 66223d
    # module name is used. 
Alain Reguera Delgado 66223d
    local TCAR_MANPAGE_NAME="${1:-${TCAR_MODULE_NAME}}"
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # When the module name has not been set and the tcar_printHelp
Alain Reguera Delgado 66223d
    # function is called from tcar.sh file, the page name come
Alain Reguera Delgado 66223d
    # with with --help as opening string and probably as
Alain Reguera Delgado 66223d
    # --help=filename.sh. In the first case it prints the script
Alain Reguera Delgado 66223d
    # documentation. In the second case it prints documentation for
Alain Reguera Delgado 66223d
    # the file specified.
Alain Reguera Delgado 66223d
    if [[ -z ${TCAR_MODULE_NAME} ]];then
Alain Reguera Delgado 66223d
        if [[ ${TCAR_MANPAGE_NAME} =~ '^--help=[[:alnum:]_-.]+' ]];then
Alain Reguera Delgado 66223d
            TCAR_MANPAGE_NAME=$(echo ${TCAR_MANPAGE_NAME} | cut -d'=' -f2)
Alain Reguera Delgado 66223d
        else
Alain Reguera Delgado bbb179
            TCAR_MANPAGE_NAME=${TCAR_SCRIPT_PACKAGE}
Alain Reguera Delgado 66223d
        fi
Alain Reguera Delgado 66223d
    fi
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Print requested documentation. 
Alain Reguera Delgado 66223d
    /usr/bin/man -M ${TCAR_SCRIPT_DIR_MANUALS}:${TCAR_MODULE_DIR_MANUALS}/Final "${TCAR_MANPAGE_NAME}"
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
    # Finish script execution successfully.
Alain Reguera Delgado 66223d
    exit 0
Alain Reguera Delgado 66223d
Alain Reguera Delgado 66223d
}