Example 1
- */5 * * * *
288
How many runs per day at */5 * * * *? 288. Expression decode, not live cron.
Paste a cron expression. */5 * * * * gives 288. 0 9 * * * gives 1. 0 9 * * 1-5 gives 1. A 5-field read, not a live scheduler.
This decodes a 5-field expression, not a cron daemon and not Quartz. Another zone sits on the timezone converter.
Enter data and click Calculate.
Cron Schedule Calculator in this calculator reads a 5-field expression. */5 * * * * gives 288. 0 9 * * * gives 1. 0 9 * * 1-5 gives 1. The calculator result is runs per day. The calculator does not install a crontab and does not start cron.
Field cron-expr is text. The five fields are minute, hour, day of month, month, day of week. */5 in the minute is every 5 minutes, so 288 in 1440 minutes. 0 9 * * * is once at 09:00. 1-5 does not turn the extras card into a weekly total: per-day stays 1.
288 is not a /var/log/cron line. 1 does not come from a systemd timer. The calculator does not know the server zone. You type the expression. There is no 6-field or 7-field Quartz here.
Unix timestamp next door converts an epoch. The timezone converter moves a clock. Here */5 * * * * stays 288, a field read alone.
Type */5 * * * *, then Calculate. The result is 288. Switch to 0 9 * * *. A blank field gives no count. This is not crontab -e.
*/5 * * * * gives 288. 0 9 * * * gives 1. 0 9 * * 1-5 gives 1. Another expression changes 288.
runs / day = matches in 1440 minutes from 5 fields. Not Quartz and not live cron.
A 5-field read. */5 * * * * gives 288. Not a live scheduler.
288
How many runs per day at */5 * * * *? 288. Expression decode, not live cron.
1
How many at 0 9 * * *? 1. Once at 09:00, not a daemon.
1
How many at 0 9 * * 1-5? 1. Per-day, not a weekday total.
288. Every 5 minutes in 1440 minutes. A field read, not live cron.
1. One run per day at 09:00.
1. The extras card keeps per-day, not a Mon-Fri total.
No. No crontab -e and no daemon. Five fields only.
No. The calculator reads 5 fields. Quartz seconds do not land here.
No. It is a match count from the expression you type.
No. Without an expression there is no run count.
On the timezone converter. Here 288 from */5 * * * * stays.
Yes, every minute. The examples keep */5, 0 9, and 1-5.
The calculator counts bits, bytes or throughput from your numbers. Below are SI and bit definitions (NIST).
Page updated in 2026.
| Field | Range | Meaning |
|---|---|---|
| Minute | 0-59 | Which minute of the hour to run. |
| Hour | 0-23 | Which hour of the day (24h clock). |
| Day of month | 1-31 | A specific day of the month. |
| Month | 1-12 | A specific month of the year. |
| Day of week | 0-7 (0 and 7 = Sunday) | A specific day of the week. |
If both day-of-month and day-of-week are restricted (not *), the job runs when either one matches β a common gotcha in POSIX cron.
This calculator expects classic 5-field cron: minute hour day-of-month month day-of-week (e.g. 0 5 * * *). Some systems (Quartz, Spring, some CI schedulers) use 6 fields with seconds first (second minute hour β¦). Pasting a 6-field expression fails validation β drop the leading seconds field or rewrite it as 5-field cron.
*/5 * * * * β every 5 minutes, around the clock.0 * * * * β every hour, on the hour.0 5 * * * β every day at 5:00 (nightly backups).0 9 * * 1-5 β weekdays at 9:00 (reports, business notifications).0 0 1 * * β midnight on the 1st of every month (monthly billing).If a job takes longer than the schedule interval (e.g. */5, but the job runs for 8 minutes), the next run starts before the previous one finishes. Without a lock (lock file, distributed lock, flock), this leads to parallel copies of the same job, race conditions, and duplicate processing.
/etc/timezone) by default, though some implementations (e.g. Vixie cron) let you set CRON_TZ per line..spec.timeZone field lets you set an IANA zone directly in the manifest.*/15 9-17 * * 1-5 β every 15 minutes, but only 9-17 on weekdays (business-hours monitoring).0 0 * * 0 β every Sunday at midnight (weekly cleanup job).30 2 1,15 * * β the 1st and 15th of the month at 2:30 (semi-monthly billing).