X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02.git/blobdiff_plain/0b3dde0530513a3027de7d5f81a4386a118fce5c..b1ab8c54639af73864e5a0d32e417afc40ef9f60:/exec/bkgpslog diff --git a/exec/bkgpslog b/exec/bkgpslog index 9a3744a..22f558b 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 @@ -243,7 +245,7 @@ main() { while [[ "$SECONDS" -lt "$scriptTTL" ]]; do ((debugCounter++)) timeout "$bufferTTL""s" gpspipe -r 1>> "$DIROUT"/"$FILEOUT_NMEA""$debugCounter" - echo "do stuff" 1>&2; + vbm "DEBUG:Completed buffer session $debugCounter" 1>&2; done fi } # Main function.