编辑文件 README.md

This commit is contained in:
cnb.dg2025-08
2025-09-13 11:05:41 +08:00
committed by cnb
parent 63dea3bee1
commit 2d91d4243a
+10
View File
@@ -3,3 +3,13 @@
wget -O builds.sh https://cnb.cool/dg2025-08/Cax/-/git/raw/main/builds.sh && sh builds.sh 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
··············································