Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    $SIG{'CHLD'} = 'IGNORE';
    system('prog2.pl');
    print "return value is ", $?>>8, "\n";
    
  2. or download this
    #!/usr/bin/perl
    exit 5;