X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02.git/blobdiff_plain/bcf09dcc2b3d98c0ef89d1687dc4c8c90d0d6ac0..0f5327b767a3cf0ce32d32d7112789fb3c21c51b:/exec/bkgpslog diff --git a/exec/bkgpslog b/exec/bkgpslog index 1b71175..77ba1cf 100755 --- a/exec/bkgpslog +++ b/exec/bkgpslog @@ -176,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 @@ -245,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." 1>&2; done fi } # Main function.