如何在Linux或者类似Unix的系统上每分钟运行crontab作业

时间:2020-01-09 10:43:30  来源:igfitidea点击:

CentOS Linux如何每分钟执行一次Cron工作?
如何使用crontab每分钟执行脚本或者shell命令?
每分钟运行crontab作业的基本语法如下:

* * * * */path/to/script或者

* * * * */path/to/command

或者运行脚本:

* * * * */scripts/lxc/update www1 db1 memecache1

或者每分钟ping我们的nas服务器:

* * * * */sbin/ping -q -c 4 nas01.theitroad.local>/dev/null

crontab文件的语法如下:

* * * * * /command/to/be/executed
- - - - 
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)

星号(*)运算符指定字段的所有可能值。
例如,小时时间字段中的星号等于每个小时,而月份字段中的星号等于每个月。
在此特定示例中,所有字段中的星号表示每分钟运行一次作业。