From 192ca9a3284c57238326c7c609258fdfc54a02b1 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jun 12 2011 03:32:58 +0000 Subject: Update help_getOptions.sh. --- diff --git a/Scripts/Functions/Help/help_getOptions.sh b/Scripts/Functions/Help/help_getOptions.sh index abe58af..882f2ee 100755 --- a/Scripts/Functions/Help/help_getOptions.sh +++ b/Scripts/Functions/Help/help_getOptions.sh @@ -67,38 +67,38 @@ function help_getOptions { ;; --search ) - ACTIONNAM="searchIndex" + ACTIONNAM="${FUNCNAM}_searchIndex" FLAG_SEARCH="$2" shift 2 ;; --edit ) - ACTIONNAM="editEntry" + ACTIONNAM="${FUNCNAM}_editEntry" shift 1 ;; --copy ) - ACTIONNAM="copyEntry" + ACTIONNAM="${FUNCNAM}_copyEntry" shift 1 ;; --delete ) - ACTIONNAM="deleteEntry" + ACTIONNAM="${FUNCNAM}_deleteEntry" shift 1 ;; --rename ) - ACTIONNAM="renameEntry" + ACTIONNAM="${FUNCNAM}_renameEntry" shift 1 ;; --update ) - ACTIONNAM="updateOutputFiles" + ACTIONNAM="${FUNCNAM}_updateOutputFiles" shift 1 ;; --read ) - ACTIONNAM="searchNode" + ACTIONNAM="${FUNCNAM}_searchNode" shift 1 ;;