Writing a shell script that pretty much wraps around an Awk script. I\'d like to have my syntax colouring on in the awk section so I feel there must be a better way to embed awk
ugly too:
read -r -d '' awkscript <<'EOF' BEGIN{ print "test"} {print $3} EOF df | awk "$awkscript"