我有一个具有以下表达式的 cron 工作:
*/30 */2 * * *
这会每半小时和每 2 小时运行一次,还是每 2.5 小时运行一次?
对于每个偶数小时,它将在一周中的每一天:00 和 :30 运行。
例如,0:00、0:30、2:00、2:30...12:00、12:30、14:00、14:30...22:00、22:30
两者都不。
来自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...。
一小时 - 没有跑步
下一小时 - 每 30 分钟运行一次