Skip to main content

Run a cron job daily at 1 PM, 2 PM, and 3 PM

Question

How do I set up a cron job that runs every day at 1PM, 2PM and 3PM?

Answer

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.

crontab
# 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.

Run 0 13,14,15 * * * on Crontap
Why this matters

Combining 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.

Cron schedule used

What it does

0 13,14,15 * * * — command

At 13:00, 14:00 and 15:00, every day.

Calendar

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.

Point Crontap at any URL. Pick any cron. Done.

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