blob: 601adf9fe3a6513b5e897c1faa215e14c4e0e717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# produces lots of stderr output
print "HTTP/1.0 200 OK\r\n";
print STDERR 'x'x8192;
print "Content-Type: text/plain\r\n\r\n";
print "this is nph-stdout";
close STDOUT;
print STDERR "this is nph-stderr";
|