mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-08 19:28:54 +00:00
12 lines
No EOL
183 B
Bash
Executable file
12 lines
No EOL
183 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 |