Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    waitpid($pid, 1);
    # It is important to waitpid on your child process,  
    # otherwise zombies could be created.
    
  2. or download this
    #!/usr/bin/perl 
    use warnings;
    ...
    
    my $result = <OUT>;
    print $result;