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
Sometimes this may be usefull:
awkscript=$(cat << EOT BEGIN{ print "test" } {print $3} EOT ) df | awk "$awkscript"