linux cron定时任务
时间: 2023-04-22 22:01:05 浏览: 181
Linux定时任务
Linux 系统中的 cron 是一种定时任务工具,可以在指定时间自动执行特定的命令或程序。cron 使用 crontab 文件来设置定时任务,crontab 文件中的每一行代表一个任务,格式为:
```
* * * * * command
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday = both 0 and 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
```
其中,用星号(*)表示任何值。例如,“* * * * * command”表示每分钟都会执行“command”。
通过 crontab -e 命令可以编辑crontab文件并添加或删除定时任务。
cron 服务默认是开启的,如果要关闭或重启 cron 服务,可以使用 service crond start/stop/restart 命令。
阅读全文