Codebase list libmawk / b9006faf-873e-4aac-9952-74a72f875ff9/main src / example_apps / 30_out_pipes / test.awk
b9006faf-873e-4aac-9952-74a72f875ff9/main

Tree @b9006faf-873e-4aac-9952-74a72f875ff9/main (Download .tar.gz)

test.awk @b9006faf-873e-4aac-9952-74a72f875ff9/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
}