如何编写一个 shellscript 日期检查,该检查不会运行除了该月的第三周周六、周日和第四周周一
例如,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
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!
我建议使用 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.