crontab每周五执行
时间: 2023-02-09 10:02:39 浏览: 309
Linux下的crontab定时执行任务命令详解
crontab 是一种 Unix 和 Linux 系统上的定时任务工具。如果你想让 crontab 每周五执行,你可以在 crontab 中设置如下命令:
```
0 0 * * 5 /path/to/command
```
这条命令会在每周五的 00:00 执行 `/path/to/command`。
注意:crontab 的时间设置是从 0 开始的,所以周一是 0,周二是 1,依此类推。
如果你想在其他时间执行,你可以按照如下格式修改时间设置:
```
* * * * * command
| | | | |
| | | | +----- day of week (0 - 7) (Sunday=0 or 7)
| | | +------- month (1 - 12)
| | +--------- day of month (1 - 31)
| +----------- hour (0 - 23)
+------------- min (0 - 59)
```
例如,如果你想在每周五的 10:00 执行命令,你可以设置如下命令:
```
0 10 * * 5 /path/to/command
```
阅读全文