Codebase list libmawk / 30b66529-447f-407d-a34b-b48ac0e29c37/main src / example_apps / 15_get_array / 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/main

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

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

END {
	print "script: END"
}