From d8e99187309a2e31da40a1f728b15696e30c0210 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Oct 06 2012 03:29:21 +0000 Subject: Update `Functions/Tuneup/tuneup_getOptions.sh' file. --- diff --git a/Scripts/Bash/Functions/Tuneup/tuneup_getOptions.sh b/Scripts/Bash/Functions/Tuneup/tuneup_getOptions.sh index 9121886..19a8b95 100755 --- a/Scripts/Bash/Functions/Tuneup/tuneup_getOptions.sh +++ b/Scripts/Bash/Functions/Tuneup/tuneup_getOptions.sh @@ -26,10 +26,10 @@ function tuneup_getOptions { # Define short options we want to support. - local ARGSS="v" + local ARGSS="q" # Define long options we want to support. - local ARGSL="verbose,filter:,answer-yes,sync-changes" + local ARGSL="quiet,filter:,answer-yes,sync-changes" # Redefine ARGUMENTS using getopt(1) command parser. cli_parseArguments @@ -47,8 +47,8 @@ function tuneup_getOptions { shift 2 ;; - -v | --verbose ) - FLAG_VERBOSE="true" + -q | --quiet ) + FLAG_QUIET="true" shift 1 ;;