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

4 lines
107 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
# This should exit 0, even though child exits 1
BEGIN { "exit 1" | getline junk ; exit 12 }
END { exit 0 }