task-supervisor/scripts/weather_report.sh
seahi 1b2b268c41
Some checks failed
continuous-integration/drone/push Build is failing
通过drone自动构建
2025-04-16 09:18:47 +08:00

11 lines
233 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
echo "天气预报服务启动中..."
while true
do
# 模拟每10秒输出一次天气预报
echo "[天气预报] 当前时间: $(date '+%Y-%m-%d %H:%M:%S')天气晴朗温度25°C"
sleep 10
done