不懂cron。什么是56 11 * * * /usr/sbin/update-file.sh

时间:2013-04-27 02:56:06

标签: linux unix rhel

这个命令在cron中意味着什么?这会多久运行一次?什么时候会运行?它会每天运行吗?

56 11 * * * /usr/sbin/update-file.sh

2 个答案:

答案 0 :(得分:4)

来自crontab(5)

field         allowed values
-----         --------------
minute        0-59
hour          0-23
day of month  1-31
month         1-12 (or names, see below)
day of week   0-7 (0 or 7 is Sun, or use names)

因此,您的行意味着每天上午11:56运行/usr/sbin/update-file.sh

答案 1 :(得分:2)

Crontab格式为:分钟,小时,星期几,月份,星期几,命令。

所以这将在每天上午11:56运行/usr/sbin/update-file.sh