From 2a56c75345b9fc1f53a17c36076e29bd75c8bccb Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Fri, 12 Mar 2021 09:28:39 -0500 Subject: [PATCH] bin/tame: Remove unnecessary trailing backslashes This was originally in a Makefile, long ago, where backslashes were actually needed. --- bin/tame | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/bin/tame b/bin/tame index 3ba4ad26..376005b2 100755 --- a/bin/tame +++ b/bin/tame @@ -378,23 +378,23 @@ kill-tamed() # output rather than wasting cycles doing this filtering. saneout() { - awk ' \ - /^~~~~\[begin /,/^~~~~\[end / { next } \ - /^rm / { next } \ - /^COMMAND / { next } \ - /^Exception|^\t+at / { \ - if ( /^E/ ) { \ - print; \ - print "Stack trace written to run-*.log"; \ - } \ - next; \ - } \ - /([Ww]arning|[Nn]otice)[: ]/ { printf "\033[0;33m"; w++; out=1; } \ - /[Ff]atal:/ { printf "\033[0;31m"; out=1; } \ - /!|[Ee]rror:/ { printf "\033[0;31m"; e++; out=1; } \ - /internal:/ { printf "\033[0;35m"; out=1; } \ - /internal error:/ { printf "\033[1m"; out=1; } \ - /^[^[]/ || out { print; printf "\033[0;0m"; out=0; } \ + awk ' + /^~~~~\[begin /,/^~~~~\[end / { next } + /^rm / { next } + /^COMMAND / { next } + /^Exception|^\t+at / { + if ( /^E/ ) { + print; + print "Stack trace written to run-*.log"; + } + next; + } + /([Ww]arning|[Nn]otice)[: ]/ { printf "\033[0;33m"; w++; out=1; } + /[Ff]atal:/ { printf "\033[0;31m"; out=1; } + /!|[Ee]rror:/ { printf "\033[0;31m"; e++; out=1; } + /internal:/ { printf "\033[0;35m"; out=1; } + /internal error:/ { printf "\033[1m"; out=1; } + /^[^[]/ || out { print; printf "\033[0;0m"; out=0; } ' }