Codebase list libmawk / debian/1.0.2-1 src / example_apps / 15_get_array / test.awk
debian/1.0.2-1

Tree @debian/1.0.2-1 (Download .tar.gz)

test.awk @debian/1.0.2-1raw · history · blame

BEGIN {
	print "script: BEGIN"
	bar["wow"] = 42
}

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

END {
	print "script: END"
}