Blame test/getlnhd.awk

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