Codebase list libmawk / bullseye-backports/main src / example_apps / 15_get_scalar / test.awk
bullseye-backports/main

Tree @bullseye-backports/main (Download .tar.gz)

test.awk @bullseye-backports/mainraw · history · blame

BEGIN {
	print "script: BEGIN"
	bar = 42
}

{
	print "script: input: \"" $0 "\""
	bar++
}

END {
	print "script: END"
}