![]() |
|
Your skill will accomplish what the force of many cannot |
|
PerlMonks |
How to kill a process after calling fork?by Anonymous Monk |
on Jun 20, 2000 at 05:24 UTC ( #18924=perlquestion: print w/replies, xml ) | Need Help?? |
Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question: ⭐ (programs and processes)
This is my code,
$pid = fork;
if($pid == 0)
{
exec " ";
}
How can I kill this process?
Originally posted as a Categorized Question.
Back to
Seekers of Perl Wisdom
|
|