Codebase list libmawk / scrub-obsolete/main src / example_apps / 90_custom_vio / test.awk
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

test.awk @scrub-obsolete/mainraw · history · blame

BEGIN {
	print "script: BEGIN test.awk"
	print "Hello world!" > "/dev/hash"
}

END {
	print "end." > "/dev/hash"
	getline val < "/dev/hash"
	print "script: END: " val
}