From 1527e4627d0dddc659782a4cebec56939a33c397 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Apr 01 2011 14:25:26 +0000 Subject: Update help_getArguments.sh. --- diff --git a/Scripts/Functions/Help/help_getArguments.sh b/Scripts/Functions/Help/help_getArguments.sh index 226eae3..35b1435 100755 --- a/Scripts/Functions/Help/help_getArguments.sh +++ b/Scripts/Functions/Help/help_getArguments.sh @@ -29,7 +29,7 @@ function help_getArguments { local ARGSS="" # Define long options we want to support. - local ARGSL="filter:,quiet,answer:,dont-commit-changes,read,search,edit,update" + local ARGSL="filter:,quiet,answer:,dont-commit-changes,read,search,edit,update,copy,delete" # Parse arguments using getopt(1) command parser. cli_doParseArguments @@ -72,6 +72,21 @@ function help_getArguments { ACTIONNAM="${FUNCNAM}_editEntry" shift 1 ;; + + --copy ) + ACTIONNAM="${FUNCNAM}_copyEntry" + shift 1 + ;; + + --delete ) + ACTIONNAM="${FUNCNAM}_deleteEntry" + shift 1 + ;; + + --rename ) + ACTIONNAM="${FUNCNAM}_renameEntry" + shift 1 + ;; --update ) ACTIONNAM="${FUNCNAM}_updateOutputFiles"