增加中控

This commit is contained in:
dekun
2026-05-13 01:52:26 +08:00
parent 5900588718
commit c14c74cf14
13 changed files with 2063 additions and 0 deletions
@@ -0,0 +1,8 @@
#!/usr/bin/env bash
# 关闭 start_hub_screen.sh 启动的中控 screen 会话
set -euo pipefail
if screen -ls 2>/dev/null | grep -qF ".mt-hub"; then
screen -S mt-hub -X quit && echo "已关闭:mt-hub" || true
else
echo "未运行:mt-hub"
fi