Help for this page

Select Code to Download


  1. or download this
    system('whatever');
    if ($?) {
      warn "whatever failed\n";
    }
    
  2. or download this
    system('whatever');
    if ($?) {
      my $exit_value  = $? >> 8;
    ...
      print " and dumped core"                            if $dumped_core;
      print "\n";
    }