mirror of
https://github.com/mempool/mempool.git
synced 2025-02-23 14:40:38 +01:00
5 lines
100 B
Bash
Executable file
5 lines
100 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
ps uaxw|grep 'dist/index'|grep -v grep|awk '{print $2}'|xargs -n 1 kill
|
|
|
|
exit 0
|