fixed appending

This commit is contained in:
Emma Tebibyte 2023-07-14 16:32:37 -06:00
parent bda7e9eace
commit 7ea9657d83
2 changed files with 5 additions and 1 deletions

6
en
View File

@ -74,7 +74,11 @@ while test -n "$1"; do
;;
"a")
read -r append
content="$content$append"
if test -z "$content"; then
content="$append"
else
content="$(printf "%s\n%s" "$content" "$append")"
fi
;;
"c")
clear

0
file Normal file
View File