如果应该基于以下条件运行作业:
* */2 * * *
什么时候应该运行这个作业?
谢谢。
如果您的 cron 工作如下所示
* */2 * * *
它每天每 2 小时的每一分钟运行一次。
从 crontab 手册页,
field allowed values
----- --------------
minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or names, see below)
day of week 0-7 (0 or 7 is Sun, or use names)
A field may be an asterisk (*), which always stands for all values from "first-last".