Codebase list libmawk / d795acbe-6550-48e8-bd3c-ba9599955814/main src / example_apps / 31_out_pipes_manual / test.awk
d795acbe-6550-48e8-bd3c-ba9599955814/main

Tree @d795acbe-6550-48e8-bd3c-ba9599955814/main (Download .tar.gz)

test.awk @d795acbe-6550-48e8-bd3c-ba9599955814/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
}