Hi I need to schedule a cron job to run at at 9:00 AM on first Sunday of every month. Did a little research and see that there is no short hand in cron to this. Do you know of an optimal way ? Using Bash+RHL
|
|
You need to combine two approaches: a) Use
b) At the beginning of |
|||||||||
|
|
You can put something like that in
The If you run these script only in Sundays it should means that it runs only in the first Sunday of the month. Remember, that in the |
||||
|
|
A hacky solution: have your cron job run every Sunday, but have your script check the date as it starts, and exit immediately if the day of the month is > 7... |
|||||||
|
|
maybe use cron.hourly to call another script. That script will then check to see if it's the first sunday of the month and 9am, and if so, run your program. Sounds optimal enough to me :-). |
|||||||||||
|
|
If you don't want cron to run your job everyday or every Sunday you could write a wrapper that will run your code, determine the next first Sunday, and schedule itself to run on that date. Then schedule that wrapper for the next first Sunday of the month. After that it will handle everything itself. The code would be something like (emphasis on something...no error checking done):
The logic is simple to find the next first Sunday. Since we start on the first Sunday of the current month, adding 28 will either put us on the last Sunday of the current month or the first Sunday of the next month. If it is the current month, we increment to the next Sunday (which will be in the first week of the next month). And I used "at". I don't know if that is cheating. The main idea though is finding the next first Sunday. You can substitute whatever scheduler you want after that, since you know the date and time you want to run the job (a different scheduler may need a different syntax for the date, though). |
|||
|
|
|
00 09 1-7 * 0 /usr/local/bin/once_a_week every sunday of first 7 days of the month |
|||
|
|