blob: a1cd3743e9e673edb52395c4bebccd64c188f783 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
BEGIN {
outputCommand = "cart"
inputCommand = "ls"
print "doing first print" > "/dev/stderr"
print "hello" | outputCommand
print "doing first getline" > "/dev/stderr"
inputCommand | getline
print "doing second print" > "/dev/stderr"
print "hello" | outputCommand
print "made it here" > "/dev/stderr"
}
|