RaveToolsCron Generator

How cron expressions work

A cron expression is five space-separated fields that tell a scheduler when to run a job. In order, they are minute (0–59), hour (0–23), day of the month (1–31), month (1–12 or JAN–DEC) and day of the week (0–6 or SUN–SAT, where 0 and 7 both mean Sunday).

An asterisk (*) means “every value”. A slash adds a step — */5in the minute field means “every 5 minutes”. You can also use ranges (1-5) and lists (1,15,30). So 0 9 * * 1-5reads as “at 09:00, Monday through Friday”.

This generator parses your expression entirely in the browser, describes it in plain English, validates the syntax, and previews the next few run times in UTC — nothing is sent to a server.

Popular cron expressions

Frequently Asked Questions

About cron expressions and this generator.