Files
chia-blockchain/scripts/_chia-stop-wallet
T

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