Weekdays at 09:00
- Example
0 9 * * 1-5- Result
minute 0 · hour 9 · Monday through Friday
A server configured for UTC will not run this at 09:00 Korean time without an offset.
Confirm a cron schedule matches your intent before deploying. Includes the day/weekday OR rule of standard cron.
Explains a cron expression in plain words and shows the next three run times.
These results use standard five-field cron semantics. Exact next-run timestamps vary by browser timezone, so the stable field interpretation is recorded here.
0 9 * * 1-5minute 0 · hour 9 · Monday through FridayA server configured for UTC will not run this at 09:00 Korean time without an offset.
0 4 1 * 104:00 on every Monday or every first day of a monthThis does not mean only Mondays that are also the first. Standard cron matches either restricted field.
Before checking with the explainer, a few patterns are worth memorizing. Note that both 0 and 7 mean Sunday.
*/5 * * * * every 5 minutes
0 * * * * top of every hour
0 4 * * * 4:00 AM daily
0 9 * * 1-5 9:00 AM on weekdays (Mon-Fri)
30 2 1 * * 02:30 on the 1st of each month
0 0 * * 0 midnight every Sunday (0 = Sunday)