我用crontab.guru创建了一个非常简单的CRON表达式,具有所需的行为,每天要在3:15(AM)执行,这是结果:15 3 * * *
[对我来说很不幸,在Azure Portal中这是行不通的,但是如果我在表达式0
中添加前导0 15 3 * * *
,Azure将接受它,而crontab.guru
会告诉我这是错误的。根据crontab.guru
的规格为:分钟时间日期月份周日。
这些问题..
查看文档:
NCRONTAB表达式由6个字段组成:{second} {minute} {hour} {day} {month} {week of day}。 CRON表达式只有5个,没有秒。
所以第一个0描述了秒。
* * * * * * command to be executed
┬ ┬ ┬ ┬ ┬ ┬
│ │ │ │ │ │
│ │ │ │ │ │
│ │ │ │ │ └───── day of week (0 - 7) (0 or 7 are Sunday, or use names)
│ │ │ │ └────────── month (1 - 12)
│ │ │ └─────────────── day of month (1 - 31)
│ | └──────────────────── hour (0 - 23)
│ └───────────────────────── min (0 - 59)
└────────────────────────────── second(0 - 59)