xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/getline3.awk (revision 2aeafac3612e19716bf8164f89c3c9196342979c)
1BEGIN {
2	cmd = "echo 3"
3	y = 7
4	cmd | getline x y
5	close(cmd)
6	print (cmd | getline x y)
7}
8