TecnoCrypter Logo

Cron Generator

Visual cron expressions

Generador de Expresiones Cron
Construye visualmente expresiones cron con descripción en español y próximas ejecuciones.
Expresión cron
0 * * * *
En el minuto 0 de cada hora

Cron Generator: Build Schedule Expressions Without Effort

Cron is the Unix standard for scheduling recurring tasks: backups, reports, cleanup jobs, cron jobs. But its syntax (5 or 6 asterisks) is notoriously difficult to remember: '*/15 * * * *' vs '0 */6 * * *' vs '0 0 * * 1-5'.

Our generator gives you a visual interface with dropdowns for minutes, hours, day of month, month, day of week. Generates the correct cron expression + human-readable description ('Every day at 3am') and shows the next 5 execution dates.

Support for standard Unix cron, extended (with seconds), Quartz (Java), and AWS EventBridge (with year field). Compatible with Linux crontab, GitHub Actions schedule, Vercel Cron Jobs, Kubernetes CronJobs.

How does it work?

  1. 1
    Select frequency

    Every N minutes, daily, weekly, monthly, or custom.

  2. 2
    Adjust details

    Specific hour, day of month, day of week. Multiple values allowed (e.g., Mon and Wed).

  3. 3
    Copy the expression

    Get the cron ready to paste in crontab, GitHub Actions, or Vercel. Includes human description.

Frequently Asked Questions

What does '*/5 * * * *' mean?

'Every 5 minutes'. Each asterisk represents: minute, hour, day of month, month, day of week. '*/5' in minute means 'every 5 minutes'. Rest of asterisks mean 'every hour, every day, every month, every day of week'.

Difference between standard cron and extended cron?

Standard has 5 fields (minute to day of week). Extended adds seconds at the beginning (6 fields). Quartz used in Java adds year at the end (7 fields). AWS EventBridge uses format similar to Quartz. Choose the appropriate one for your platform.

Why is my cron in AWS Lambda not firing?

AWS EventBridge requires a special format: 'cron(minutes hours day-of-month month day-of-week year)' with 6 mandatory fields and ? in day-of-month or day-of-week (but not both). Our generator has an AWS mode that handles this correctly.