commit fbff12a8f26dece86614028aeb850ea55b1b5dc6
parent abc527cf88b0d0245ad0ba30c7fa2f17b4a5fde8
Author: NunoSempere <nuno.sempere@protonmail.com>
Date: Thu, 12 May 2022 11:02:51 -0400
tweak: delete % from list of characters, since it has some problems in bash
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git 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