Help for this page

Select Code to Download


  1. or download this
    Though if you try to re-open "STDOUT" or "STDERR" as an "in
    memory" file, you have to close it first:
    
        close STDOUT;
        open STDOUT, '>', \$variable or die "Can't open STDOUT: $!";
    
  2. or download this
    use strict;
    use warnings;
    ...
    }
    
    close STDOUT;