Blame test/clos1way3.awk

Packit 575503
BEGIN {
Packit 575503
	# We use "&&" and not ";" so it works with Windows shells as well.
Packit 575503
	cmd = "cat - 1>&2 && sleep 2"
Packit 575503
	print "test1" |& cmd
Packit 575503
	close(cmd, "to")
Packit 575503
	print "test2" |& cmd
Packit 575503
	print ERRNO
Packit 575503
}