Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以以 cron 格式安排作业,使其每天从早上 6:30 到 11:30 每 30 分钟运行一次吗?如何?
我认为你需要 2 行来实现你所需要的:
30 6-11 * * * /path/to/your/command 0 7-11 * * * /path/to/your/command
除了 Alvin 的回答,我建议将此行插入到您的 crontab 中:
*/30 6-11 * * * /path/to/your/command