Blame test/sigpipe1.awk

Packit 575503
BEGIN {
Packit 575503
	print "system"
Packit 575503
	command = "yes | true"
Packit 575503
	system(command)
Packit 575503
Packit 575503
	print "pipe to command"
Packit 575503
	print "hi" | command
Packit 575503
	close(command)
Packit 575503
Packit 575503
	print "pipe from command"
Packit 575503
	command | getline x
Packit 575503
	close(command)
Packit 575503
}