Killing child processes
Killing child processes
Is there any command to kill a process which also kills all its child processes forcefully?
Only Human
Re:Killing child processes
Hi!
should do the job, at least it does so for my shell scripts.
cheers Joe
Code: Select all
killall -KILL -g [parent-process-name]
cheers Joe
Re:Killing child processes
Couldnt find killall in CYGWIN thats why I wasn't trying it. Thanks anyway.
Is there some option of 'kill' that does this same thing?
Is there some option of 'kill' that does this same thing?
Only Human