Codebase list libmawk / 30b66529-447f-407d-a34b-b48ac0e29c37/main src / example_apps / 90_custom_vio / test.awk
30b66529-447f-407d-a34b-b48ac0e29c37/main

Tree @30b66529-447f-407d-a34b-b48ac0e29c37/main (Download .tar.gz)

test.awk @30b66529-447f-407d-a34b-b48ac0e29c37/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
}