From b18b1934b320df549dfa6e7fc173c1ea6d86792a Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sun, 1 Jan 2017 04:05:00 +0330 Subject: colorful human redable print for the simple-text output of mutator-lvl0 --- extra-tools/ReportPrintPretty.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 extra-tools/ReportPrintPretty.sh diff --git a/extra-tools/ReportPrintPretty.sh b/extra-tools/ReportPrintPretty.sh new file mode 100755 index 0000000..4ec08ab --- /dev/null +++ b/extra-tools/ReportPrintPretty.sh @@ -0,0 +1,11 @@ +#!/bin/bash +#the first input should be the raw report output +#the second output should be the file name for the pretty output +"cat" "$1" | gawk ' +BEGIN{RS = "\n";FS = ":"} +function red(s) {printf "\033[1;31m" s "\033[0m "} +function green(s) {printf "\033[1;32m" s "\033[0m "} +function blue(s) {printf "\033[1;34m" s "\033[0m "} + {print red($1)green($2)green($3)blue($4)blue($5)} +END{} +' > "$2" \ No newline at end of file -- cgit v1.2.3