xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/sigpipe1.awk (revision b6ed8f224ac74c5a605c334c1cf1e093427251f4)
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