Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
$spiderProc = Proc::Simple->new(); $spiderStatus = $spiderProc->start("k:\\spider\\spider.exe"); print ("spider start status: $ spiderStatus"); # returns start failed $spiderPoll = $spiderProc->poll(); print ("test poll: $spiderPoll"); # returns running $tempExitStat = $spiderProc->kill(); print ("killing: $tempExitStat"); # returns fill failed
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to kill an external program
by boo_radley (Parson) on Jan 13, 2003 at 15:20 UTC | |
|
Re: How to kill an external program
by batkins (Chaplain) on Jan 13, 2003 at 15:20 UTC | |
|
Re: How to kill an external program
by BronzeWing (Monk) on Jan 13, 2003 at 19:33 UTC | |
by Anonymous Monk on Jan 13, 2003 at 22:03 UTC |