aboutsummaryrefslogtreecommitdiffstats
path: root/extra-tools/ReportPrintPretty.sh
blob: 4ec08abc268a3e6910797a4a19b2ea91df0f012a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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"