如何安排每月多天的 Cron 作业?
How to schedule a Cron job for multiple days every month?
我希望每个月为特定日期集安排气流作业,例如每个月的第 11 天和最后一天,并使用以下调度程序表达式
25 14 11,L * * # At 2:45 pm on 11th and last day of every month
当我在 https://crontab.guru/ and http://cron.schlitt.info/ 中验证上述内容时,我被告知该表达式无效。
是否可以将每个月的已知和未知(这里是最后一天)安排在一起?如果没有,还有其他方法可以实现吗?
可能您的 cron 不支持“L”标志。你可以参考这个CRON job to run on the last day of the month
我希望每个月为特定日期集安排气流作业,例如每个月的第 11 天和最后一天,并使用以下调度程序表达式
25 14 11,L * * # At 2:45 pm on 11th and last day of every month
当我在 https://crontab.guru/ and http://cron.schlitt.info/ 中验证上述内容时,我被告知该表达式无效。
是否可以将每个月的已知和未知(这里是最后一天)安排在一起?如果没有,还有其他方法可以实现吗?
可能您的 cron 不支持“L”标志。你可以参考这个CRON job to run on the last day of the month