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.
我有一个要使用 Quartz 运行的工作,它需要使用 Cron 计划指定时间。
作业应在 17:00、17:35 和 22:05 运行。
是否可以使用 Cron 计划指定这些时间?我已经查看了维基百科的文章,但它并没有太大帮助。从我的角度来看,时间之间需要有一个模式,以便您可以使用 Cron 计划指定它们。
此致
尼古拉斯
您可以使用 3 个 cron 作业来完成。例子 :
> crontab -e 00 17 * * * sh /example/script.sh 35 17 * * * sh /example/script.sh 05 22 * * * sh /example/script.sh