Codebase list libmawk / debian/1.0.0-2 src / example_apps / 90_custom_vio / test.awk
debian/1.0.0-2

Tree @debian/1.0.0-2 (Download .tar.gz)

test.awk @debian/1.0.0-2raw · 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
}