Describe your schedule in plain English. Get a cron expression with field breakdown, next run times, and platform tips. Free — no signup needed.
| Field | Values | Special Characters |
|---|---|---|
| Minute | 0-59 | * , - / |
| Hour | 0-23 | * , - / |
| Day of Month | 1-31 | * , - / ? L W |
| Month | 1-12 or JAN-DEC | * , - / |
| Day of Week | 0-7 or SUN-SAT (0 & 7 = Sun) | * , - / ? L # |
Cron expressions are deceptively tricky. The difference between 0 9 * * 1-5 and * 9 * * 1-5 is the difference between running once at 9 AM on weekdays and running every minute of the 9 AM hour on weekdays. One wrong character can cause jobs to run thousands of times more than intended.
Just describe when you want your job to run. "Every weekday at 9 AM", "Every 15 minutes", "First Monday of the month at midnight" — our AI handles the translation and shows you exactly what each field means.
Need a cron for your Linux crontab? AWS CloudWatch? Spring Boot's @Scheduled annotation? Quartz scheduler? We support all major formats and note platform-specific quirks.
Don't guess — see the next 5 execution times to verify the expression does what you expect. Catches edge cases before they hit production.
No signup, no API key. 10 free generations per day. Each generation includes the expression, field breakdown, explanation, next runs, and platform tips.
Use the visual builder to select your schedule — minute, hour, day, month, weekday. The tool instantly generates the correct cron expression and shows a plain-English description of when it will next run.
A standard cron expression has five fields: minute, hour, day of month, month, and day of week. Example: 0 9 * * 1 runs every Monday at 9 AM. The asterisk (*) means "every" for that field.
Use */5 * * * *. The */n syntax means "every n units". For every 10 minutes use */10 * * * *, and for every hour use 0 * * * *.
Cron is the Unix daemon that executes scheduled tasks. Crontab is the file that stores your cron expressions and commands. Edit it with crontab -e on Linux or macOS.
Use 0 0 * * * for midnight every day. For 2:30 AM daily, use 30 2 * * *. The visual builder lets you set any time without memorizing the syntax.
Get the complete system to hire an AI agent as your first employee. Setup guides, 30 delegation templates, security hardening.