crontab.space/cron / 0 10-17 * * 1-5

0 10-17 * * 1-5

Every hour, between 10:00 AM and 05:00 PM, Monday through Friday
8 runs / day · next: Wed, May 27, 04:00 PM UTC

At a glance

meansevery hour, between 10:00 am and 05:00 pm, monday through friday
frequency8 / day · ~56 / week
next runWed, May 27, 04:00 PM UTC
syntaxstandard 5-field cron

See it on a calendar

UTC · no runs in window
036912151821Mon
Tue
Wed
Thu
Fri
Sat
Sun
less
more

Next runs

Wed, May 27, 04:00 PM UTC
Wed, May 27, 05:00 PM UTC
Thu, May 28, 10:00 AM UTC
Thu, May 28, 11:00 AM UTC
Thu, May 28, 12:00 PM UTC
Thu, May 28, 01:00 PM UTC

Use it in

# /etc/crontab
0 10-17 * * 1-5  user  /usr/local/bin/your-script.sh
Snippets are templates — replace placeholders with your script and paths.
Going to production? Cron won’t tell you when it fails.
Standard cron silently skips runs when the machine is off, the script crashes, or the network drops. Get an alert the moment a scheduled run misses its window.
Monitor with cronradar

Field by field

min
0
0
hour
10-17
10-17
dom
*
any
mon
*
any
dow
1-5
1-5
minute · hour · day of month · month · day of week

What does 0 10-17 * * 1-5 mean?

The cron expression 0 10-17 * * 1-5 runs every hour, between 10:00 am and 05:00 pm, monday through friday. Cron expressions have five fields — minute, hour, day of month, month, and day of week — separated by spaces. Each field controls one piece of the schedule.

When you’d use this

This schedule is a common fit for jobs that need to run during business hours on weekdays — reports, batch processing, end-of-day summaries. Paste it into your crontab, a node-cron call, a Kubernetes CronJob manifest, or a GitHub Actions workflow — the snippets above are ready to copy.

Gotchas

Cron runs in the system’s timezone unless you set TZ or schedule in UTC. Missed runs are not retroactively executed by standard cron — use anacron or systemd timers with Persistent=true if you need catch-up. Day-of-month and day-of-week combine with OR semantics in most cron implementations, which can be surprising.

FAQ

An asterisk matches every valid value for that field. In the minute field it means every minute; in the hour field, every hour, and so on. "* * * * *" runs every minute of every hour, every day.
Both. Standard cron accepts 0 and 7 as Sunday. Day-of-week runs Sunday=0, Monday=1, ..., Saturday=6, with 7 also recognized for Sunday in most implementations.
No. Standard cron only fires at the exact scheduled times — there is no catch-up. If you need missed-run recovery, look at anacron, systemd timers with Persistent=true, or a job scheduler like Quartz.
Quartz uses 6- or 7-field expressions with seconds and optional year, plus extras like "L" (last) and "#" (nth weekday). Standard Unix cron is 5 fields: minute, hour, day-of-month, month, day-of-week.
Cron runs in the timezone of the system or the configured TZ. During DST transitions, a missing hour is skipped and a repeated hour fires twice. Use UTC scheduling for predictable behavior across regions.
© 2026 CronTab.space · Free cron expression validator, crontab generator, and cron job builderCron tells you when a job should run — not whether it actually did. Built by the team at cronradar.com, which pings you when a scheduled run is missed or fails.