How 0 9 * * 1-5 Works
0 9 * * 1-5 uses a range in the weekday field: 1-5 means Monday (1) through Friday (5). Sunday is 0, Saturday is 6.
This is the archetypal "business hours" cron schedule — used for sending daily digest emails, running reports, syncing CRM data, or any automation that should only run on working days.
Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | At minute zero |
| Hour | 9 | At 9am |
| Day of month | * | Every day |
| Month | * | Every month |
| Weekday | 1-5 | Monday through Friday only |
Next 10 Run Times
Approximate run times starting from the current date. Open in the builder to see exact run times in your timezone.
Platform Examples
0 9 * * 1-5 /path/to/script.sh
on:
schedule:
- cron: '0 9 * * 1-5' # 9:00 UTC, Mon–Fri
cron(0 9 ? * MON-FRI *)
spec:
schedule: "0 9 * * 1-5"
cron.schedule('0 9 * * 1-5', () => { ... });
scheduler.add_job(fn, 'cron', hour=9, minute=0, day_of_week='mon-fri')
Related Cron Expressions
Running this in GitHub? Use our GitHub Actions cron guide to account for UTC-only scheduling and delayed execution windows.
FAQ
Build or explain any cron expression
Use the free visual builder — paste an expression for a plain-English explanation, or click your way to a schedule. See the next 10 run times. No login.
Open CronBuilder →