Codebase list libmawk / d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main src / example_apps / 30_out_pipes / test.awk
d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main

Tree @d9f30b5e-7ff9-4ae9-856b-e12b904bb243/main (Download .tar.gz)

test.awk @d9f30b5e-7ff9-4ae9-856b-e12b904bb243/mainraw · history · blame

1
2
3
4
5
6
7
8
9
BEGIN {
	print "BEGIN test.awk"
	print "this is the initial log entry." > "log"
	print "foobar" > "real_file"
}

{
	print "stdin=" $0
}