mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
13 lines
184 B
Bash
Executable File
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
|
|
|