Uttir

Cron Expression Generator

Build cron expressions from a simple form, or pick a common preset. See plain-English explanations.

Cron Expression Generator — Cron expressions are a compact way to describe a recurring schedule, but the 5-field syntax is hard to remember. This generator lets you click through the common patterns (every 5 minutes, every weekday at 9 AM, first of the month) or build a custom schedule by picking the time, days, and date.

Generated locally. Nothing is sent anywhere.

Was Cron Expression Generator useful?

What is cron expression generator?

Cron expressions are a compact way to describe a recurring schedule, but the 5-field syntax is hard to remember. This generator lets you click through the common patterns (every 5 minutes, every weekday at 9 AM, first of the month) or build a custom schedule by picking the time, days, and date.

Paste the generated expression into your crontab, GitHub Actions schedule, or anywhere cron runs. The companion Cron Parser will verify it shows when it will next fire.

How to use it

  1. Pick a preset

    Common schedules are one click — every minute, weekdays at 9 AM, etc.

  2. Or build your own

    Set the time, toggle the days of the week, and pick a day-of-month if you want.

  3. Copy the expression

    Use the expression in crontab, CI configs, or anywhere cron runs.

Examples

Every weekday at 9 AM

A classic work-hour schedule.

Result: 0 9 * * 1-5

Every 15 minutes

A common health-check heartbeat.

Result: */15 * * * *

Frequently asked questions

Related tools