mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-11 18:14:25 -05:00
9 lines
183 B
Plaintext
Executable File
9 lines
183 B
Plaintext
Executable File
_kill_servers() {
|
|
PROCS=`ps -e | grep -E 'chia-wallet' | awk '!/grep/' | awk '{print $1}'`
|
|
if [ -n "$PROCS" ]; then
|
|
echo "$PROCS" | xargs -L1 kill -KILL
|
|
fi
|
|
}
|
|
|
|
_kill_servers
|