Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    warn "As does this.";
    die "And this does, too!\n";
    close STDERR;
    
  2. or download this
    open(OLDERR,">&STDERR") || die "Couldn't dup STDERR: $!\n";
    open(STDERR,">>error.log") || die "Couldn't redirect STDERR: $!\n";
    ...
    warn "As does this.";
    open(STDERR,">&OLDERR") || die "Couldn't restore STDERR: $!\n";
    warn "This goes to the screen.";