2

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

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

2 回答 2

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)

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

于 2013-04-27T02:57:46.530 回答
2

crontab 格式为:分、时、月、月、周、命令。

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

于 2013-04-27T02:57:42.390 回答