xref: /illumos-gate/usr/src/test/util-tests/tests/awk/gnu/getlnhd.awk (revision e6d6c189fa3a95d7aa27bbe0aeacf7c1a6b57c8c)
1BEGIN { pipe =      "cat <<EOF\n"
2        pipe = pipe "select * from user\n"
3        pipe = pipe "  where Name = 'O\\'Donell'\n"
4        pipe = pipe "EOF\n"
5
6        while ((pipe | getline) > 0)
7                print
8
9        exit 0
10}
11