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
--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
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.