如何编写一个 shellscript 日期检查,该检查不会运行除了该月的第三周周六、周日和第四周周一

发布于 2024-07-19 15:02:07 字数 73 浏览 4 评论 0原文

例如,schellscript 将不会在 4 月 18、19 和 20 日运行,然后在 5 月是 16、17 和 18 日,依此类推

E.g. the schellscript will not run on april 18, 19 and 20 and then for may is 16, 17 and 18 and so on

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伊面 2024-07-26 15:02:07

您可以使用 date "+%w" 从 date 命令获取数字形式的工作日。
周日的输出为 0,周一的输出为 1,依此类推。

您可以使用 date "+%d" 获取该月的日期。 减去 1 再除以 7; 这将告诉您当月有多少个完整的周。

从那里开始,它只是一堆简单的 if/then 语句。 如果您在实际实施过程中需要更多帮助,请直接询问。

希望有帮助!

You can get the weekday in numerical form from the date command using date "+%w".
The output will be 0 for Sunday, 1 for Monday etc.

You can get the day of the month using date "+%d". Subtract one from that and divide by 7; that will give you how many complete weeks there have been in the current month.

From there, it's just a simple bunch of if/then statements. If you need more help actually implementing this, just ask.

Hope that helps!

痴者 2024-07-26 15:02:07

我建议使用 cron 来处理此类事情,将计划执行与脚本实际执行的操作分开。

请查看此处了解如何使用 cron。

I would advise to use cron for this kind of things, to separate the planned execution from what the script really does.

Have a look here on how to use cron.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文