#!/bin/bash # 订单对账防漏单 - 宝塔定时任务用 # 建议每 10 分钟执行一次 URL="${SYNC_ORDERS_URL:-https://soul.quwanzhi.com/api/cron/sync-orders}" curl -s -X GET "$URL" \ -H "User-Agent: Baota-Cron/1.0" \ --connect-timeout 10 \ --max-time 30 echo ""