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