cron 生成每天凌晨1点自动生成
时间: 2024-06-14 11:05:17 浏览: 41
cron表达式自动生成
5星 · 资源好评率100%
以下是生成每天凌晨1点自动生成的cron表达式的方法:
1. 使用6个域的格式:Seconds Minutes Hours DayofMonth Month DayofWeek
```python
0 0 1 * * ?
```
这个表达式表示每天的凌晨1点执行任务。
2. 使用7个域的格式:Seconds Minutes Hours DayofMonth Month DayofWeek Year
```python
0 0 1 * * ? *
```
这个表达式也表示每天的凌晨1点执行任务,但是多了一个Year域,可以忽略。
阅读全文