From 7d52c61f1b4ac528b54b53c3638467be9b481359 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Oct 06 2012 03:29:25 +0000 Subject: Update `Functions/Help/help_getOptions.sh' file. --- diff --git a/Scripts/Bash/Functions/Help/help_getOptions.sh b/Scripts/Bash/Functions/Help/help_getOptions.sh index 959e624..285f35c 100755 --- a/Scripts/Bash/Functions/Help/help_getOptions.sh +++ b/Scripts/Bash/Functions/Help/help_getOptions.sh @@ -27,10 +27,10 @@ function help_getOptions { # Define short options we want to support. - local ARGSS="v" + local ARGSS="q" # Define long options we want to support. - local ARGSL="verbose,answer-yes,read,search:,edit,update-output,update-structure,copy,delete,rename,sync-changes" + local ARGSL="quiet,answer-yes,read,search:,edit,update-output,update-structure,copy,delete,rename,sync-changes" # Redefine ARGUMENTS using getopt(1) command parser. cli_parseArguments @@ -43,8 +43,8 @@ function help_getOptions { while true; do case "$1" in - -v | --verbose ) - FLAG_VERBOSE="true" + -q | --quiet ) + FLAG_QUIET="true" shift 1 ;;