How do I set up a cron job that runs every day at 1PM, 2PM and 3PM?
Use 0 13,14,15 * * *: an hour list runs at 13:00, 14:00 and 15:00 daily. 0 13-15 * * * is the equivalent range; different minutes need separate lines.
How do I set up a cron job that runs every day at 1PM, 2PM and 3PM?
Use one expression with a comma-separated list in the hour field. It runs your command at 13:00, 14:00, and 15:00 every day.
# every day at 13:00, 14:00, and 15:00
0 13,14,15 * * *Read 0 13,14,15 * * * from left to right: 0 selects minute 0, so every run starts at the top of the hour; 13,14,15 selects the three hours in 24-hour time; the day-of-month * permits every date; the month * permits every month; and the day-of-week * permits every day of the week. Because these hours are consecutive, 0 13-15 * * * is an equivalent range form, but the list makes the requested times explicit. Lists also work for nonconsecutive hours, such as 0 13,16,21 * * *. If each run needs a different minute, for example 13:00, 14:15, and 15:30, you need separate cron expressions because cron combines every selected minute with every selected hour.
0 13,14,15 * * * on CrontapCombining hours in one list avoids maintaining three equivalent cron entries and keeps a shared command in one place. The failure mode appears when you also list multiple minutes: cron takes the cross-product of those fields. For example, 0,30 13,14,15 * * * runs six times, not three paired times. Use one expression only when every selected minute should apply to every selected hour; otherwise, use one line per time, as in the 8:00 AM and 3:30 PM answer.
Read the dedicated guide: Cron twice a day.
0 13,14,15 * * * — command
View future cron matches in a calendar
September 2026 · UTC
0 runs
See this cron expression on the calendar view example
Write the cron here. Run it on Crontap.
WordPress, Shopify, Railway, Cloud Run, Vercel, HubSpot, Ghost, your own box. If it answers HTTP, Crontap can drive it on a clock you can read, in the timezone that actually matters, and page you when something breaks.
1.9k+ teams · Free forever tier · No credit card
Permalink: https://tool.crontap.com/help/cron-job-run-script-at-separate-hours-of-the-day