aboutsummaryrefslogtreecommitdiffstats
path: root/test/pty2.awk
blob: c2eedbd0b5364ceeefcbd65ad018fb68ef31c3ee (plain)
1
2
3
4
5
6
7
8
9
BEGIN {
   cmd = "tr '[A-Z]' '[a-z]' 2> /dev/null"
   PROCINFO[cmd, "pty"] = 1
   input = "ABCD"
   print input |& cmd
   cmd |& getline x
   print x
#   close(cmd)
}