crontab在特定时间之间每15分钟运行一次

问题描述 投票:20回答:2

这是否正确安排在每15分钟07:00至19:00之间运行?

*/15    07-19        *     * *     /path/script
linux cron crontab schedule
2个回答
43
投票

Yes! Well, more or less

这将从每隔15分钟从7.00到19.45:

*/15    07-19        *     * *     /path/script

如果你希望它运行到19.00那么你必须写两行:

*/15    07-18        *     * *     /path/script
0          19        *     * *     /path/script

您可以在crontab.guru中获得该命令的完整描述:https://crontab.guru/#/15_7-19___


3
投票

对,那是正确的。

crontab中的条目应为:

*/15 7-19 * * * /path/script >/dev/null 2>&1
© www.soinside.com 2019 - 2024. All rights reserved.