crontab的设置定时的时间语法结构,具体点举例
时间: 2024-05-09 16:19:40 浏览: 72
crontab的时间语法结构如下:
```
* * * * * command
- - - - -
| | | | |
| | | | ----- Day of the week (0 - 7) (Sunday is 0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of the month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
```
举例:
```
0 1 * * * /usr/bin/my-script.sh
```
上面的例子表示,在每天的凌晨1点执行`/usr/bin/my-script.sh`脚本。其中,`0`表示分钟数为0,`1`表示小时数为1,`*`表示每月的任意一天都可以执行,`*`表示每个月都可以执行,`*`表示每周的任意一天都可以执行。
阅读全文