Help for this page

Select Code to Download


  1. or download this
    system($file1);
    if ($? == -1) {
    ...
    } elsif ($? >> 8) {
        die("Command exited with error ", ($? >> 8), "\n");
    }
    
  2. or download this
    use Devel::Peek;
    Dump($?);