diff --git a/Scripts/Bash/Functions/Help/help_getOptions.sh b/Scripts/Bash/Functions/Help/help_getOptions.sh index af5cb1d..6539c02 100755 --- a/Scripts/Bash/Functions/Help/help_getOptions.sh +++ b/Scripts/Bash/Functions/Help/help_getOptions.sh @@ -30,7 +30,7 @@ function help_getOptions { local ARGSS="q,h" # Define long options we want to support. - local ARGSL="quiet,help,answer-yes,read,search:,edit,update-output,update-structure,copy,delete,rename,sync-changes" + local ARGSL="quiet,help,answer-yes,read,search:,format:,edit,update-output,update-structure,copy,delete,rename,sync-changes" # Redefine ARGUMENTS using getopt(1) command parser. cli_parseArguments @@ -64,6 +64,11 @@ function help_getOptions { FLAG_SEARCH="$2" shift 2 ;; + + --format ) + FLAG_FORMAT=$(cli_getRepoName "$2" -f) + shift 2 + ;; --edit ) ACTIONNAM="editEntry"