diff options
author | vanhauser-thc <vh@thc.org> | 2023-04-08 15:29:43 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-04-08 15:29:43 +0200 |
commit | c1af004451e2732b855aafb567fccbd615b5214e (patch) | |
tree | 72da3111cc842dec6467b79accb607270b2f6785 | |
parent | abd6b06fa46281757e4017678d56cfca238c8428 (diff) | |
download | afl++-c1af004451e2732b855aafb567fccbd615b5214e.tar.gz |
afl-whatsup tput
-rwxr-xr-x | afl-whatsup | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/afl-whatsup b/afl-whatsup index 2f5c9675..cec1ae28 100755 --- a/afl-whatsup +++ b/afl-whatsup @@ -70,10 +70,10 @@ if [ -d queue ]; then fi -RED=`tput setaf 9 1 1` -GREEN=`tput setaf 2 1 1` -BLUE=`tput setaf 4 1 1` -YELLOW=`tput setaf 11 1 1` +RED=`tput setaf 9 1 1 2>/dev/null` +GREEN=`tput setaf 2 1 1 2>/dev/null` +BLUE=`tput setaf 4 1 1 2>/dev/null` +YELLOW=`tput setaf 11 1 1 2>/dev/null` NC=`tput sgr0` RESET="$NC" |