这个 cron 运行的时间间隔是多少?
这个 CRON 运行的时间间隔是多少?
*/5 0 * * * /command
What interval does this CRON run?
*/5 0 * * * /command
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这个 CRON 运行的时间间隔是多少?
*/5 0 * * * /command
What interval does this CRON run?
*/5 0 * * * /command
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
下面将每 5 分钟运行一次脚本 /home/user/test.pl,从整点后 0 分钟开始,然后是过去 5 分钟,依此类推。
来自:http://en.wikipedia.org/wiki/Cron
The following will run the script /home/user/test.pl every 5 minutes starting at 0 minutes past the hour then 5 minutes past and so on.
From: http://en.wikipedia.org/wiki/Cron
您的 cron 在午夜到 01:00 之间每 5 分钟运行一次 - 不包括在内。
You cron runs every 5 minutes between midnight and 01h00 - not included.
http://cronwtf.github.com/ 有一个有用的网站,您可以在其中粘贴 cron 行并它会给你一个关于它将做什么的英文解释。粘贴您的行会产生以下结果:
在分钟运行
/command
:00, :05, :10, :15, :20, :25, :30, :35, :40, :45,每天 0 点 :50、:55。请注意,0 小时是中午 12 点至凌晨 1 点。
还有一个 perl 模块 Schedule::Cron::Events 可以做一些事情类似地,该模块在 Ubuntu 16.04 中可用。希望它可以通过其他发行版包管理器获得。
要在 ubuntu 上安装该模块:
在脚本中使用此模块:
将产生以下输出:
There is a useful site at http://cronwtf.github.com/ where you can paste cron lines and it will give you an English explanation of what it will do. Pasting your lines yields the following results:
Runs
/command
at minutes :00, :05, :10, :15, :20, :25, :30, :35, :40, :45, :50, :55, on hour 0, every day.Note, hour 0 is 12am-1am.
There is also a perl module Schedule::Cron::Events that does something similar, this module is available in Ubuntu 16.04. Hopefully it is available via other distros package managers.
To install the module on ubuntu:
Using this module in a script:
will produce the following output: