diff options
-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 |