Every weekday at 8 AM
0 8 * * 1-5
At 08:00, Monday through Friday
Translate CRON expressions into human-readable schedules with next run times.
Was this tool useful?
Cron is the Unix standard for scheduling recurring tasks. A cron expression has five fields separated by spaces: minute, hour, day-of-month, month, and day-of-week. Each field accepts a number, a wildcard (*), a step (*/5), a range (1-5), or a list (1,3,5).
Reading an unfamiliar cron expression is hard. This tool translates it into plain English and shows the next ten scheduled run times so you can immediately see whether the schedule does what you intend.
0 8 * * 1-5
At 08:00, Monday through Friday
*/15 * * * *
Every 15 minutes