我想在启动时以及定期运行几个 crontab。我使用了以下格式 -
# M H Dom Mon Dow
0 7-21/2 * * * //this will run daily from morning 7:00 to 21:00 clock with interval of 2hours each. ie. 7, 9, 11, 13 and so on.
@reboot //this will run everytime the system reboots
*/20 7-21 * * * //this will run for every 10 minutes from 7:00 to 21:00 clock
0 7-21/4 * * * //this will run for every 4hours from 7:00 to 21:00 clock
这是我设置的 2 个不同的 cronjob。我怀疑这是否有效。请建议需要的更改(如果有)。谢谢。
答案1
查看这些 crontab 示例。它们详细解释了不同的格式。如果你使用谷歌搜索,可以找到更多
http://www.thegeekstuff.com/2009/06/15-practical-crontab-examples/