Help for this page

Select Code to Download


  1. or download this
    #!perl
    # call child with normal output going to STDERR
    print `child.pl 1>&2`;
    
  2. or download this
    #!perl
    
    ...
      print STDERR "Error $_\n";
      print STDOUT "Message $_\n";
    }