HardenedBSD/contrib/awk/test/getlnhd.awk
1997-10-14 18:17:11 +00:00

11 lines
258 B
Awk

BEGIN { pipe = "cat <<EOF\n"
pipe = pipe "select * from user\n"
pipe = pipe " where Name = 'O\\'Donell'\n"
pipe = pipe "EOF\n"
while ((pipe | getline) > 0)
print
exit 0
}