mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 10:21:52 +01:00
6 lines
100 B
Bash
6 lines
100 B
Bash
#!/usr/bin/env zsh
|
|
|
|
ps uaxw|grep 'dist/index'|grep -v grep|awk '{print $2}'|xargs -n 1 kill
|
|
|
|
exit 0
|