Codebase list libmawk / 981c753b-c373-44cd-8865-7dcd5e2502ff/main src / example_apps / 30_out_pipes / test.awk
981c753b-c373-44cd-8865-7dcd5e2502ff/main

Tree @981c753b-c373-44cd-8865-7dcd5e2502ff/main (Download .tar.gz)

test.awk @981c753b-c373-44cd-8865-7dcd5e2502ff/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
}