Help for this page

Select Code to Download


  1. or download this
      open OLDERR, '>&STDERR' or croak "cannot dup stderr: $!";
      open STDERR, '>&STDOUT' or croak "cannot redirect stderr to stdout: 
    +$!";
    
  2. or download this
      if (my $fh = new IO::File '-|') { ...
    
  3. or download this
      package NVC::Log::STDERR;
      use strict;
    ...
        my $self = shift;
        $log->die(join '', @_);
      }