如果应该根据以下方式运行作业:
* */2 * * *
什么时候应该开始这项工作?
感谢。
答案 0 :(得分: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".