X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02.git/blobdiff_plain/0b3dde0530513a3027de7d5f81a4386a118fce5c..e014f2394d460e40c8ca9f16fd4efb9addd30ada:/exec/bkgpslog?ds=inline diff --git a/exec/bkgpslog b/exec/bkgpslog index 9a3744a..d621e4e 100755 --- a/exec/bkgpslog +++ b/exec/bkgpslog @@ -97,8 +97,10 @@ checkdir() { dirRollCall["$arg"]="true"; #echo "DEBUG:dirRollCall[\"$arg\"]:"${dirRollCall["$arg"]} if ! [ "$returnState" = "false" ]; then returnState="true"; fi - else + elif [ "$arg" = "" ]; then dirRollCall["$arg"]="false"; returnState="false"; + else + returnState="false"; fi done @@ -174,7 +176,7 @@ processArguments() { --h | --help) showUsage; exit 1;; # Display usage. --version) showVersion; exit 1;; # Show version --v | --verbose) OPTION_VERBOSE="true"; vbm "DEBUG:Verbose mode enabled.";; # Enable verbose mode. - --o | --output) if [ -d "$2" ]; then DIROUT="$2"; fi ;; # Define output directory. + --o | --output) if [ -d "$2" ]; then DIROUT="$2"; vbm "DEBUG:DIROUT:$DIROUT"; shift; fi ;; # Define output directory. *) echoerr "ERROR: Unrecognized argument."; exit 1;; # Handle unrecognized options. esac shift