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