From: Chris Koeritz Date: Sat, 11 Apr 2015 06:55:16 +0000 (-0400) Subject: fixed extra quote in printout of name change. X-Git-Tag: 2.140.90~657 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=ae041eb1a51283e17d605e08784bad2b3f29fd99;p=feisty_meow.git fixed extra quote in printout of name change. --- 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