特定日期的 Cron 表达式
我想要一个代表 2010 年 9 月 6 日上午 6:00 的 cron 表达式
I want a cron expression that represents 6th September 2010 6:00 am
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想要一个代表 2010 年 9 月 6 日上午 6:00 的 cron 表达式
I want a cron expression that represents 6th September 2010 6:00 am
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
原始问题被标记为 cron ,因此第一部分适用于该问题。请参阅下面的 Quartz CronTrigger 工具的更新答案。
大多数 crontab 不允许您指定年份,因此您可能必须将其放入脚本本身(或脚本/程序的包装器)中。
您可以通过以下方式执行此操作:
您希望每年 9 月 6 日早上 6 点运行的选项是:
对于 Quartz CronTrigger 格式,您将看到类似以下内容:
Original question was tagged
cron
so this first section applies to that. See below for an updated answer for the Quartz CronTrigger tool.Most crontabs don't let you specify the year so you'll probably have to put that in the script itself (or a wrapper around the script/program).
You can do this with something like:
The option you're looking for to run at 6am on September 6 every year is:
For the Quartz CronTrigger format, you'd be looking at something like:
对于一次性作业,'at' 命令比 cron 更适合。
For one-shot jobs the 'at' command is better suited than cron.
它只能在 /etc/crontab 中,如下所示:
It could be only in /etc/crontab by follows:
这会对你有所帮助。
https://www.freeformatter.com/cron-expression-generator-quartz。 html
This will help you.
https://www.freeformatter.com/cron-expression-generator-quartz.html