How to create cron statement to run for multiple hours

寵の児 提交于 2019-12-18 12:08:48

问题


I need a cron statement to run for few hours eg 1-8 then 10-15. In this case will the following statement work,

0 1-8,10-15 * * * 

If not can anyone help me?

Thanks in advance, Gnik


回答1:


You cannot, you can use either multiple values OR a range

0 1,2,3,4,5,6,7,8,10,11,12,13,14,15 * * *

Source:

Time tags are separated by spaces. Do not use spaces within a tag, this will confuse cron. All five tags must be present. They are a logical AND of each other. There is another space between the last time tag and the first command.

A time tag can be a wildcard "*", which means "all". It can be one value, several values, a range, or a fractional range.




回答2:


I find it more readable to have two crontab entries:

0 1-8 * * * ...
0 10-15 * * * ...


来源:https://stackoverflow.com/questions/10811241/how-to-create-cron-statement-to-run-for-multiple-hours

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!