in reply to Killing processes
Greeting Everyone,
Two comments
My understanding is that the kill command only reports whether or not it successfully sent a signal which may or may not have actually killed the process. The only safe thing to do is to check whatever mechanism you have for getting the PIDs in the first.
Tangentially, IMHO, backticks are best avoided in Perl code. The syntax `some command` looks nicer as qx|some command|.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Killing processes
by deyaneria (Acolyte) on Mar 20, 2015 at 18:30 UTC |