Files
2025-09-13 11:07:43 +08:00

23 lines
621 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## cnsamyxray免流修改版20250913
```
wget -O builds.sh https://cnb.cool/dg2025-08/Cax/-/git/raw/main/builds.sh && sh builds.sh
```
## 杀死全部进程命令
·············································
/etc/init.d/cns restart#下面命令添加进原脚本 会杀死cns自己,所以下面命令单独使用
kill -s 15 $(pidof cns) >/dev/null 2>&1
kill -9 $(pgrep cns) >/dev/null 2>&1
kill -s 15 $(ps -ef|grep cns | grep -v grep)
killall cns > /dev/null 2> 1
··············································