Cron – Is it possible to get a cron job to run between certain hours only

cron

I'm editing a crontab for a job that I want to run every minute but only between the hours of 10pm and 2am. Outside this time I'd like it to run every 10 minutes, I'm not sure if this is possible though.

Any help appreciated, thanks.

Best Answer

It would probably be best to have it a 2 separate jobs, one for each hourly group

* 22-23,0-2 * * * command
*/10 2-22 * * * command