From ae041eb1a51283e17d605e08784bad2b3f29fd99 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 11 Apr 2015 02:55:16 -0400 Subject: [PATCH] fixed extra quote in printout of name change. --- scripts/core/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index ead36518..b068210c 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -411,7 +411,7 @@ if [ -z "$skip_all" ]; then # the output of the replace operaton for reporting. final_name="$(perl "$FEISTY_MEOW_SCRIPTS/files/replace_spaces_with_underscores.sh" "$arg2")" # now zap the intermediate part of the name off. - final_name="$(echo \"$final_name\" | sed -e 's/.*=> //')" + final_name="$(echo $final_name | sed -e 's/.*=> //')" # printout the combined operation results. echo "'$arg' => $final_name" done -- 2.34.1