summaryrefslogtreecommitdiff
path: root/test/getline3.awk
blob: 03e1239df8f03f4e315568dad17717110a55c5ff (plain)
1
2
3
4
5
6
7
BEGIN {
	cmd = "echo 3"
	y = 7
	cmd | getline x y
	close(cmd)
	print (cmd | getline x y)
}