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