in reply to Re: perl script as a running process
in thread perl script as a running process
Correct. Signal 9 is SIGKILL, which is not actually sent to the process; it tells the kernel to terminate it without remorse. If you're trying to catch INT, send INT (kill -2) or for TERM, -15.
--isotope