RevealTheme logo

Constructor de Expresiones Cron

Crea expresiones de programación cron de forma visual. Pruébalas contra las próximas horas de ejecución.

0 * * * *
Ajustes comunes

Cómo usar esta herramienta

  1. 1

    Type a value into each of the five fields: Minute, Hour, Day (of month), Month, and DOW (day of week).

  2. 2

    Use cron syntax inside any field: * for every value, a number like 9, a range like 1-5, a step like */15, or a list like 1,15.

  3. 3

    Or click a preset such as 'Weekdays at 8am' to fill all five fields at once, then tweak as needed.

  4. 4

    Read the assembled expression in the preview box and press Copy to put it on your clipboard for crontab or your scheduler.

¿Qué es el Constructor de Expresiones Cron?

Cron es la sintaxis estándar para programar tareas recurrentes en sistemas Unix. El formato tiene cinco campos: minuto, hora, día del mes, mes y día de la semana. Los sistemas modernos lo amplían a seis campos (añadiendo segundos). Este constructor te ayuda a componer expresiones sin memorizar la sintaxis.

Casos de uso comunes

  • Schedule a nightly database backup to run at a quiet hour, for example 0 3 * * * for 3am every day.

  • Configure a GitHub Actions or GitLab CI workflow that runs on a cron trigger without hand-counting the fields.

  • Set up a Kubernetes CronJob or a serverless scheduled function and paste the expression into the schedule field.

  • Build a weekday-only reminder or report job, like 0 8 * * 1-5 for 8am Monday through Friday.

  • Create a high-frequency polling task such as */5 * * * * to check a queue or endpoint every five minutes.

  • Generate a monthly billing or cleanup expression like 0 0 1 * * that fires at midnight on the first of each month.

Preguntas frecuentes

¿Qué significa '*/5 * * * *'?
Cada 5 minutos, a cualquier hora, cualquier día. La sintaxis '*/N' significa 'cada N unidades de este campo'.
¿Cómo ejecuto algo solo entre semana?
Usa '0 9 * * 1-5': a las 9 de la mañana, de lunes a viernes.

Herramientas relacionadas