mirror of
https://github.com/mempool/mempool.git
synced 2025-01-01 03:04:27 +01:00
6 lines
100 B
Plaintext
6 lines
100 B
Plaintext
|
#!/usr/bin/env zsh
|
||
|
|
||
|
ps uaxw|grep 'dist/index'|grep -v grep|awk '{print $2}'|xargs -n 1 kill
|
||
|
|
||
|
exit 0
|