#!/bin/bash # 确保日志目录存在 mkdir -p /app/backend/logs # 后台循环脚本 while true; do /app/backend/cleanup.sh sleep 1800 # 休眠30分钟 done