mirror of
https://github.com/amix/vimrc
synced 2025-02-28 14:12:51 +08: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
|
|
|