Help for this page

Select Code to Download


  1. or download this
        sub system_and_die {
            system(@_) and die "system @_ failed";
    ...
        if($@) {
            print "Ouch! ($@)\n";
        }