Shell - List / Kill all subprocesses of a process
pstree -ap 89918
pkill -9 -P 89918 (It only kills its subprocesses, doesn't kill the process itself, so the following subprocesses will start when the currently running ones are killed. Carefully use it.)