Codebase list libmawk / b9006faf-873e-4aac-9952-74a72f875ff9/main src / example_apps / 90_custom_vio / test.awk
b9006faf-873e-4aac-9952-74a72f875ff9/main

Tree @b9006faf-873e-4aac-9952-74a72f875ff9/main (Download .tar.gz)

test.awk @b9006faf-873e-4aac-9952-74a72f875ff9/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
}