Help for this page

Select Code to Download


  1. or download this
     # example with IPC via pipe
     use strict;
    ...
     error {
         die "That's all folks\n";
     };
    
  2. or download this
    # This forks implicitly
    my $child_pid = open my $child_fh, '-|';
    ...
    
        exit;
    }