From fbff12a8f26dece86614028aeb850ea55b1b5dc6 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Thu, 12 May 2022 11:02:51 -0400 Subject: [PATCH] tweak: delete % from list of characters, since it has some problems in bash --- append.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/append.bash b/append.bash index 97109fc..5c458cb 100644 --- a/append.bash +++ b/append.bash @@ -65,7 +65,7 @@ cmd_append_append() { ARGS="$@" charstring1='"' - charstring2="\!#\$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_\`abcdefghijklmnopqrstuvwxyz{|}~" + charstring2="\!#\$&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_\`abcdefghijklmnopqrstuvwxyz{|}~" characters="$charstring1$charstring2" @@ -92,4 +92,4 @@ version | --version | -v) ;; *) cmd_append_append "$@" ;; esac -exit 0 \ No newline at end of file +exit 0