Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    ($output, $error)=run();
    print "$output, $error\n";
    
  2. or download this
    $ ./test_eval.pl
    , Error: Could not execute not_a_command: open3: exec of not_a_command
    + failed at ./test_eval.pl line 22
    
  3. or download this
      ...
      if (!$pid) {
    ...
          POSIX::_exit($!);
      }
      ...