I need to run a script at 2 pm on the end of every month. The reason i set 2 pm is i've a timezone of asia/calcutta and it differs 10 hrs and 30 min. from the server time.

I've set date_default_timezone_set('Asia/Calcutta') in my script, so for the current settings i can trigger 1st day of every month as per my timezone.

But the issue is, i'm using webmin and there is no settings to run end of every month and only date from 1 - 31 listed. Here i attached the screenshot.
enter image description here

How can i run the script on end of the every month at 2pm?

Any help greatly appreciated, Thanks!.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The simple way, but ugly

is set to run on every 28,29,30,31 days. Each time when script is launched compare current day with max days in current month using bash/oerl script

link|improve this answer
yeah, that was really simple. frustrated not able to get this tweak... – Sekar Dec 2 '11 at 5:36
feedback

Have it run every day starting the 28th of every month through the first of the next month. In the script, check if tomorrow is the first day of a month. If so, run, else die.

link|improve this answer
@YuriyVikulov, jinx! :) – Jonathan M Dec 2 '11 at 5:18
Yuriy beat you in a minute... – Sekar Dec 2 '11 at 5:38
@Sekar, Yep, he got me by 5 seconds! Drat! :) – Jonathan M Dec 2 '11 at 5:40
:-) just a luck – Yuriy Vikulov Dec 2 '11 at 6:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.