RevealTheme logo

Cron表达式构建器

以可视化方式创建cron调度表达式。针对接下来的运行时间进行测试。

0 * * * *
常用预设

如何使用本工具

  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.

什么是Cron表达式构建器?

Cron是Unix系统中用于调度周期性任务的标准语法。其格式包含五个字段:分钟、小时、日、月和星期。现代系统将其扩展为六个字段(增加了秒)。本构建器帮助你无需记忆语法即可编写表达式。

常见使用场景

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

常见问题

'*/5 * * * *'是什么意思?
每5分钟一次,任意小时,任意日期。语法'*/N'表示“此字段每N个单位”。
如何让任务只在工作日运行?
使用'0 9 * * 1-5':每天上午9点,周一至周五。

相关工具