Reputation: 215
All,
I want to execute a command in cron from 1 AM to 2 PM every 5 minutes. How can I schedule that
Upvotes: 1
Views: 1171
Reputation: 1076
Use the cron expression 1Am to 2 AM
*/5 1 * * * command
1am to 2pm
*/5 1-13 * * * command
Upvotes: 4