From 55b84dbceaed5f24b86cdfc3fe6a0b42717f116e Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Oct 13 2012 21:35:34 +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 42b4173..5d413af 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="q,h" + local ARGSS="h,q" # Define long options we want to support. - local ARGSL="quiet,help,answer-yes,read,search:,format:,edit,update-output,update-structure,copy,delete,rename,sync-changes" + local ARGSL="help,quiet,answer-yes,read,search:,format:,edit,update-output,update-structure,copy,delete,rename,sync-changes" # Redefine ARGUMENTS using getopt(1) command parser. cli_parseArguments @@ -59,6 +59,11 @@ function help_getOptions { shift 1 ;; + --sync-changes ) + FLAG_SYNC_CHANGES="true" + shift 1 + ;; + --search ) ACTIONNAM="searchIndex" FLAG_SEARCH="$2" @@ -75,6 +80,11 @@ function help_getOptions { fi shift 2 ;; + + --read ) + ACTIONNAM="searchNode" + shift 1 + ;; --edit ) ACTIONNAM="editEntry" @@ -96,23 +106,13 @@ function help_getOptions { shift 1 ;; - --update-output ) - ACTIONNAM="updateOutputFiles" - shift 1 - ;; - --update-structure ) ACTIONNAM="updateStructureSection" shift 1 ;; - --read ) - ACTIONNAM="searchNode" - shift 1 - ;; - - --sync-changes ) - FLAG_SYNC_CHANGES="true" + --update-output ) + ACTIONNAM="updateOutputFiles" shift 1 ;;