这个Cron的日程安排是什么?

时间:2012-07-17 20:53:40

标签: linux cron

我有一个带有以下表达式的cron作业:

*/30 */2 * * *

这会每半小时运行一次,每2小时运行一次,还是每2.5小时运行一次?

3 个答案:

答案 0 :(得分:3)

每隔一小时,它将在:00和30 - 每周的每一天运行。

例如,0:00,0:30,2:00,2:30~12:00,12:30,14:00,14:30~22:00,22:30

答案 1 :(得分:1)

都不是。

来自crontab(5)

Commands are executed by cron(8) when the minute, hour, and month of year fields match
the current time, and when at least one of the two day fields (day of month, or day of
week) match the current time

因此,当分钟为0或30且小时均匀时 - 0:00,0:30,2:00,2:30,您的参赛作品将会运行....

答案 2 :(得分:0)

一小时 - 没有跑步

下一小时 - 每30分钟运行一次