Help for this page

Select Code to Download


  1. or download this
    my $exit_status = system("child.pl");
    print "Exit Status: $exit_status\n";
    
  2. or download this
    exit(2);
    
  3. or download this
    my $exit_status = system("child.pl");
    $exit_status /= 256;
    print "Exit Status: $exit_status\n";