Build cron expressions visually with dropdowns, see a human-readable description, and preview the next 5 run times.
Choose your schedule using the dropdowns for minute, hour, day of month, month, and day of week. The cron expression updates in real time, with a plain-English description and the next 5 run times shown below.
A cron expression has 5 fields: minute hour day-of-month month day-of-week. For example, 0 9 * * 1-5 means "at 9:00am, Monday through Friday".
* — any value. */n — every n units. a-b — range from a to b. a,b,c — list of values.
* * * * * — Every minute. 0 * * * * — Every hour. 0 0 * * * — Daily at midnight. 0 0 * * 0 — Every Sunday at midnight. */5 * * * * — Every 5 minutes. 0 9 * * 1-5 — Weekdays at 9am.
Run crontab -e to edit your crontab. Paste your cron line in the format: expression /path/to/command. Save and exit — the cron daemon picks it up immediately.
🧾 Need to extract data from invoice PDFs? Try our Invoice Extractor — paste a PDF, get structured data instantly.
Try Invoice Extractor →