X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02.git/blobdiff_plain/c2aaff78bd38230ab42fcb7509276dff7d0d9b58..c1bbf9f72e42f890bac670f7dce42b792470c04e:/exec/bkgpslog

diff --git a/exec/bkgpslog b/exec/bkgpslog
index 999775e..8d1829a 100755
--- a/exec/bkgpslog
+++ b/exec/bkgpslog
@@ -170,13 +170,13 @@ vbm() {
 } # Verbose message display function.
 processArguments() {
     while [ ! $# -eq 0 ]; do   # While number of arguments ($#) is not (!) equal to (-eq) zero (0).
-	echoerr "DEBUG:Starting processArguments while loop."
-	echoerr "DEBUG:Provided arguments are:""$*"
+	#echoerr "DEBUG:Starting processArguments while loop."
+	#echoerr "DEBUG:Provided arguments are:""$*"
 	case "$1" in
-	    --h | --help) showUsage; exit 1;; # Display usage.
+	    -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"; vbm "DEBUG:DIROUT:$DIROUT"; shift; fi ;; # Define output directory.
+	    -v | --verbose) OPTION_VERBOSE="true"; vbm "DEBUG:Verbose mode enabled.";; # Enable verbose mode.
+	    -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