Unix & Linux Asked by Tim_drake931 on January 3, 2022
What will be the cron job for scheduling a script for every day except second Sunday and fourth Sunday of the month.
Thanks
Although I think it's a bad idea and it would be better to run it every 14 days, this should do what you want. (To run at 4:00 at night)
0 4 1-7 * * test $(date +%u) -eq 7 && ./yourscript.sh
0 4 15-21 * * test $(date +%u) -eq 7 && ./yourscript.sh
0 4 22-31 * * test $(date +%u) -eq 7 && ./yourscript.sh
Edit: I forgot to add minutes -> fixed
Answered by Garo on January 3, 2022
Get help from others!
Recent Answers
Recent Questions
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP