From: <RGi...@a1...> - 2002-03-13 13:10:03
|
> I need > to do is to send a kill signal to a child process, > that is waiting for input, on the remote server. I don't know how > to find > the child process id on the remote server so I thought > trying by sending something similar to CTRL+C. Any comment? Actually, signal propagation is the job of the communicating entity. Just send it to the spawned telnet/ssh client and he should do the rest. kill TERM => $exp->pid; should do the trick. HTH, Roland -- RGi...@cp... |