diff options
author | Colin Okay <colin@cicadas.surf> | 2022-08-17 09:19:28 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-08-17 09:19:28 -0500 |
commit | 4bed983479efcc44b2e2425f7c3364be80f0200c (patch) | |
tree | cbeb1deae5b5fdcfa6de027955c30da353887137 | |
parent | 40707d12d1a5edc98afd862b68da8fd525257600 (diff) |
[fix] threadcat-read was mangling some echoed lines
-rwxr-xr-x | threadcat-read.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/threadcat-read.sh b/threadcat-read.sh index 9d6012b..5cdcdc0 100755 --- a/threadcat-read.sh +++ b/threadcat-read.sh @@ -15,7 +15,7 @@ if [ ! -z "${THREAD_NAME}" ]; then if [[ $line =~ ^=== ]]; then echo -e "\e[0;36m$line\e[0m" else - echo $line; + echo "$line"; fi done else |