aboutsummaryrefslogtreecommitdiffstats
path: root/test/clos1way3.awk
blob: 2c4a6f4f8ee35f7276b0dd9d41a942def09c8948 (plain)
1
2
3
4
5
6
7
8
BEGIN {
	# We use "&&" and not ";" so it works with Windows shells as well.
	cmd = "cat - 1>&2 && sleep 2"
	print "test1" |& cmd
	close(cmd, "to")
	print "test2" |& cmd
	print ERRNO
}