mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-04-22 04:18:33 -05:00
13 lines
193 B
Bash
Executable File
13 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
terminateTree() {
|
|
for cpid in $(/usr/bin/pgrep -P $1); do
|
|
terminateTree $cpid
|
|
done
|
|
kill -9 $1 > /dev/null 2>&1
|
|
}
|
|
|
|
for pid in $*; do
|
|
terminateTree $pid
|
|
done
|