Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    my $child_exit_status = $? >> 8;
    
    print "child_exit_status: $child_exit_status\n";
    
  2. or download this
    [-
    use warnings;
    ...
    
    print OUT "child_exit_status: $child_exit_status\n";
    -]