Cron 表达式解析器
将 Cron 表达式解析为可读描述,并显示下次计划执行时间。
Minute (0-59) (0-59)
Hour (0-23) (0-23)
Day (1-31) (1-31)
Month (1-12) (1-12)
Weekday (0-6) (0-6)
About Cron Expressions
Cron is a time-based job scheduler in Unix-like systems. A cron expression consists of 5 fields: minute, hour, day of month, month, and day of week. Special characters include * (any), / (step), , (list), and - (range). Used extensively in CI/CD, scheduled tasks, and automation.
使用方法
- Enter a cron expression (5 fields: minute hour day month weekday)
- Or click a quick preset button for common schedules
- View the human-readable description
- Check the next scheduled run times
常见用途
- Setting up scheduled tasks on Linux servers
- Configuring CI/CD pipeline schedules
- Planning cron jobs for backups
- Debugging crontab entries