mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 14:22:44 +01:00
8 lines
154 B
Bash
Executable file
8 lines
154 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
killall sh
|
|
killall node
|
|
killall chrome
|
|
killall xinit
|
|
for pid in `ps uaxww|grep warmer|grep zsh|awk '{print $2}'`;do
|
|
kill $pid
|
|
done
|