9 lines
134 B
Perl
9 lines
134 B
Perl
# closes stderr during script execution
|
|
|
|
close STDERR;
|
|
|
|
print "Content-Type: text/plain\n\n";
|
|
|
|
sleep 1;
|
|
|
|
print "this is also stdout";
|