blob: f4927b56c5219a9ab11a723c526123646d9ba76c (
plain)
1
2
3
4
5
6
7
8
|
# closes stderr during script execution
print "Content-Type: text/plain\n\n";
print "this is more stdout";
close STDOUT;
print STDERR "this is a post-stdout-closure error message";
|