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

11 lines
252 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
# 模拟每5秒输出一次新闻头条
echo "[新闻播报] 当前时间: $(date '+%Y-%m-%d %H:%M:%S')头条今日科技新闻新型AI技术发布"
sleep 5
done