Cron Jobs between x and y on weekdays
cron, ubuntu
Solution
Every 10 minutes between 09:00 - 17:00 on weekdays (monday - friday)
*/10 09-17 * * 1-5 /path/to/file
Problem
I'm trying to set a cron job up to run every ten minutes on weekdays between 9am and 5pm. I have a bunch of jobs set up now to run on weekdays at 10 minute intervals (so 48 jobs) Is there a way to do this in one Cron Job?