source: trunk/essentials/sys-apps/gawk/test/getlnhd.awk

Last change on this file was 3076, checked in by bird, 18 years ago

gawk 3.1.5

File size: 258 bytes
Line 
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}
Note: See TracBrowser for help on using the repository browser.