This commit is contained in:
Evan Cui 2018-07-05 21:10:16 +08:00
Родитель b08bcd49d5
Коммит c00987ffc0
1 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -64,10 +64,13 @@ if $CGInstalled; then
((maxLoop--))
done
else
if [ "$forced" == "1" ]; then
kill -s 9 $(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')
else
kill -s SIGINT $(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')
$pid = $(pstree -l -p "$processId" | grep "([[:digit:]]*)" -o | tr -d '()')
if [ -n "$pid" ]; then
if [ "$forced" == "1" ]; then
kill -s 9 $pid
else
kill -s SIGINT $pid
fi
fi
fi