xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/sigpipe1.awk (revision d48be21240dfd051b689384ce2b23479d757f2d8)
1BEGIN {
2	print "system"
3	command = "yes | true"
4	system(command)
5
6	print "pipe to command"
7	print "hi" | command
8	close(command)
9
10	print "pipe from command"
11	command | getline x
12	close(command)
13}
14