Cron Expression

Dev Tools
* * * * *
Presets:
Fields
Minute
0-59
Hour
0-23
Day of Month
1-31
Month
1-12
Day of Week
0-6
Next 10 Executions
  1. 12026/8/13 10:17:00
  2. 22026/8/13 10:18:00
  3. 32026/8/13 10:19:00
  4. 42026/8/13 10:20:00
  5. 52026/8/13 10:21:00
  6. 62026/8/13 10:22:00
  7. 72026/8/13 10:23:00
  8. 82026/8/13 10:24:00
  9. 92026/8/13 10:25:00
  10. 102026/8/13 10:26:00
Cron Format Comparison
FormatFieldsStructureExampleUse CasesPlatforms / Tools
Standard (5-field)5minute hour day month weekday30 2 * * 1-5Linux/Unix system scheduled tasks (crontab), simple periodic tasks such as daily backups, log cleanup, timed scriptsLinux crontab, macOS launchd, AWS CloudWatch Events, GitHub Actions (schedule), most CI/CD platforms
With Seconds (6-field)6second minute hour day month weekday*/5 * * * * *Sub-minute precision tasks such as heartbeat detection, real-time data sync, high-frequency polling, microservice health checksSpring @Scheduled (non-Quartz mode), Node.js node-cron, Kubernetes CronJob (extended), Systemd Timer
Quartz (7-field)7second minute hour day month weekday year0 0 9 ? * 2-6 2026Enterprise-level scheduled tasks requiring year control, complex business rules (e.g., second Monday of each month), year-specific one-time tasksJava Quartz Scheduler, Spring Quartz integration, XXL-JOB, ElasticJob, Apache Airflow (plugin)