Codebase list libmawk / 1df34837-a1d9-4cbd-a796-a1f5ebe673fc/main src / example_apps / 31_out_pipes_manual / test.awk
1df34837-a1d9-4cbd-a796-a1f5ebe673fc/main

Tree @1df34837-a1d9-4cbd-a796-a1f5ebe673fc/main (Download .tar.gz)

test.awk @1df34837-a1d9-4cbd-a796-a1f5ebe673fc/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
}