rust/editors/code/src/utils/terminateProcess.sh
2019-11-27 21:35:06 +03:00

12 lines
No EOL
183 B
Bash

#!/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