blob: f10c019315eec071f585d189afa4884df77d5c8d (
plain)
1
2
3
4
5
6
7
|
BEGIN {
cmd = "cat - 1>&2; sleep 2"
PROCINFO[cmd, "NONFATAL"] = 1
print "test1" |& cmd; close(cmd, "to")
fflush(cmd)
print "test2" |& cmd; print gensub(/number/, "descriptor", 1, ERRNO)
}
|