RevealTheme logo

Construtor de Expressões Cron

Crie expressões de agendamento cron de forma visual. Teste-as contra os próximos horários de execução.

0 * * * *
Predefinições comuns

Como usar esta ferramenta

  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.

O que é o Construtor de Expressões Cron?

Cron é a sintaxe padrão para agendar tarefas recorrentes em sistemas Unix. O formato tem cinco campos: minuto, hora, dia do mês, mês e dia da semana. Os sistemas modernos o ampliam para seis campos (adicionando segundos). Este construtor ajuda você a compor expressões sem memorizar a sintaxe.

Casos de uso comuns

  • 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.

Perguntas frequentes

O que significa '*/5 * * * *'?
A cada 5 minutos, a qualquer hora, qualquer dia. A sintaxe '*/N' significa 'a cada N unidades deste campo'.
Como executo algo apenas nos dias úteis?
Use '0 9 * * 1-5': às 9 da manhã, de segunda a sexta-feira.

Ferramentas relacionadas