ubuntu-buildroot/output/build/host-gawk-5.2.0/test/getline3.awk

8 lines
91 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
BEGIN {
cmd = "echo 3"
y = 7
cmd | getline x y
close(cmd)
print (cmd | getline x y)
}