(root)/
gawk-5.2.2/
test/
getline3.awk
BEGIN {
	cmd = "echo 3"
	y = 7
	cmd | getline x y
	close(cmd)
	print (cmd | getline x y)
}