Help for this page

Select Code to Download


  1. or download this
    system(....);
    if ($? == -1) {
       print "failed to execute: $!\n";
    }
    
  2. or download this
    use strict; 
    use warnings;
    system('no-such-program'); 
    print $?