Help for this page

Select Code to Download


  1. or download this
    my $child_pid = open $handle, '-|', '/path/to/program' or die "Error s
    +tarting program $!";
    
    # Some time later the program stops responding
    kill($child_pid);
    
  2. or download this
    my $child_pid = fork();
    if( 0 == $child_pid )
    ...
    
    # Some time later the program stops responding
    kill($child_pid);