About cron expressions
A cron expression generator helps you build the schedule string used by cron and many schedulers to run jobs at set times. Choose the minute, hour, day, month and weekday, and the tool writes the correct expression with a plain-English description so you can confirm it before using it. It runs entirely in your browser.
How Cron Generator works
How to build a cron expression
- Set when the job should run — minute, hour, day of month, month and day of week.
- The cron expression and a human-readable summary update instantly.
- Copy the expression into your crontab or scheduler.
Cron fields
A standard cron line has five fields: minute hour day-of-month month day-of-week. * means "every", */5 means "every 5", and lists like 1,15 and ranges like 1-5 are supported.
Check before you schedule
The plain-English description (for example "At 02:30 every day") helps you confirm the schedule does exactly what you intend before adding it to a server.
Common uses
- Schedule backups and maintenance jobs
- Build a crontab line correctly
- Run scripts at specific times
- Set up recurring tasks on a server
- Confirm a schedule in plain English
- Learn how cron syntax works
- Plan cron jobs for deployments
- Avoid cron mistakes before going live
Frequently asked questions
How do I create a cron expression?
Pick the minute, hour, day, month and weekday — the tool writes the expression and explains it in plain English.
What do the five fields mean?
Minute, hour, day of month, month and day of week, in that order.
What does the asterisk mean?
An asterisk (*) means "every" value for that field — for example every minute or every day.
Can I run something every few minutes?
Yes — use a step like */5 in the minute field to run every 5 minutes.
Does this match my scheduler?
It produces standard 5-field cron syntax used by Linux cron and most schedulers.
Is my data uploaded?
No — the expression is built entirely in your browser.
How do I use the expression?
Add it to your crontab (crontab -e) or paste it into your scheduler.
Is it free?
Yes — completely free with no sign-up.