Glam Prestige Journal

Bright entertainment trends with youth appeal.

How can I set a cron to run every 2 hours between 8 am and 5 pm for example? Is this possible?

2

2 Answers

Actually, Alex's (former) solution will run every minute, every 2 hours between 8 am and 3pm.  The right solution is:

0 8-17/2 * * * /path/command

Or even:

0 8,10,12,14,16 * * * /path/command

Which of course looks less nice, but still does what requested...

2
0 8-17/2 * * * your_command.sh

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy