Explain cron expressions in plain English. Generate from common presets.
A cron expression is a string that defines when a job runs. Used in Linux, cron jobs, schedulers, and CI/CD (GitHub Actions, Jenkins). Format: minute hour day-of-month month day-of-week. Example: "0 9 * * 1-5" means every weekday at 9:00 AM. This tool explains any cron expression in plain English and generates common presets.
Common schedules: every minute (* * * * *), every hour (0 * * * *), daily at midnight (0 0 * * *), every Monday at 9:00 (0 9 * * 1), first day of month (0 0 1 * *). Perfect for developers setting up backups, cleanup jobs, or automated tasks. All processing in your browser.