Files
dotfiles/vim/.vim/pack/coc/start/coc.nvim-release/bin/terminateProcess.sh
2019-11-25 17:58:42 +01:00

13 lines
184 B
Bash
Executable File

#!/bin/bash
terminateTree() {
for cpid in $(pgrep -P $1); do
terminateTree $cpid
done
kill -9 $1 > /dev/null 2>&1
}
for pid in $*; do
terminateTree $pid
done