如何在 Linux 上创建每 0.25 小时运行一次的 cron 作业?
答案1
以及 rslite 的
0,15,30,45 * * * * command-to-be-executed
这应该适用于大多数版本的 cron
*/15 * * * * command-to-be-executed
答案2
将其添加到 crontab 文件中:
0,15,30,45 * * * * command-to-be-executed
答案3
*/15 * * * * some-command
答案4
将分钟设置为0,15,30,45
或从每小时的任何其他分钟开始。