Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何每 20 分钟运行一次 cron,如下所示:
00:20, 00:40, 01:20, 01:40 等一直到 :00
我应该在 crontab 中放什么?
像一条线
20,40 * * * * /path/to/job
仅当时间的分钟部分为 20 或 40 时才应触发作业。
如果您将它放在系统的 crontab 中,请在最后一个星号之后添加一个用户名。
在 crontab 中添加以下行
20,40 * * * * sh your_script.sh
*/20 * * * * /path/to/script.sh