Which runs every 2 minutes between 9 am to 5:30 pm? I can make it run if its 9 to 5 but just not getting that 5:30 pm? Is there a way out?

PS: Except for splitting the jobs

link|improve this question

40% accept rate
What about making it two jobs? – andol Jul 19 '10 at 18:57
feedback

2 Answers

Just do two cronjobs.

*/2 5-16 * * * your_script
0-30/2 17 * * * your_script
link|improve this answer
feedback

Run the cron job every two minutes, so just "*/2 * * * * *" in the cron entry.

Then have the actual script check if the time is >9:00 and <17:30

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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