aboutsummaryrefslogtreecommitdiffstats
path: root/test/sigpipe1.awk
blob: 9b23f39036c4e36a0b9e991b2318e9666fb1fc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BEGIN {
	print "system"
	command = "yes | true"
	system(command)

	print "pipe to command"
	print "hi" | command
	close(command)

	print "pipe from command"
	command | getline x
	close(command)
}