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). Our online cron expression parser lets you validate and decode any cron schedule instantly. Common cron expressions include */5 * * * * (every 5 minutes), 0 0 * * * (daily at midnight), and 0 9 * * 1 (every Monday at 9am). Use this cron schedule generator for CI/CD pipelines, crontab debugging, automated backups, and recurring task planning.
常见问题
💬 User Feedback
使用方法
- 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