jinqian (@sunfri)黑五即将到来,用Claude写了个 TG补货通知机器人 中发帖

使用 
系统:Debian12
apt install git -y
git clone https://github.com/jinqians/VPSMonitorBot.git && cd VPSMonitorBot && chmod +x menu.sh
./menu.sh

menu.sh
#!/bin/bash

RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
CYAN='\033[0;36m'
RESET='\033[0m'

URLS_FILE="urls.txt"
LOG_FILE="monitor.log"
CONFIG_FILE="config.json"
VENV_DIR="venv"
PYTHON_CMD="python3"
PID_FILE="monitor.pid"

# 检查并创建虚拟环境
s...