Cron expression
* * * JUL *
Every minute, every hour, every day, only in July.
Next runs · UTC
- —
- —
- —
- —
- —
September 2026 · UTC
0 runs
Read more in the dedicated guide: Cron every minute.
What this cron means, field by field
Each field of * * * JUL * controls one dimension of the schedule. Hover over any value in the editor above to see its tooltip; the table below summarises the same information.
| Field | Value | Means | Range / hint |
|---|---|---|---|
| minute | * | every value (wildcard) | 0-59. The minute(s) of the hour the job will fire. |
| hour | * | every value (wildcard) | 0-23. The hour(s) of the day the job will fire (0 = midnight, 23 = 11 PM). |
| day of month | * | every value (wildcard) | 1-31. The day(s) of the month. Use * if you want every day. |
| month | JUL | at month JUL | 1-12 or JAN-DEC. The month(s). Use * for every month. |
| day of week | * | every value (wildcard) | 0-7 or SUN-SAT (0 and 7 both mean Sunday). Use * for every day of the week. |
Next 5 runs
Shown in UTC. Change the timezone in the editor.
Next runs · UTC
- Thu 1 Jul · 00:00in 287d 14h
- Thu 1 Jul · 00:01
- Thu 1 Jul · 00:02
- Thu 1 Jul · 00:03
- Thu 1 Jul · 00:04
Similar cron expressions
Common variations and tweaks of * * * JUL *.
*/5 * * JUL *Every 5 minutes, only in July*/15 * * JUL *Every 15 minutes, only in July*/30 * * JUL *Every 30 minutes, only in July* * * JUL 1-5Every minute, Monday through Friday, only in July* * 1 JUL *Every minute, on day 1 of the month, only in July* * L JUL *Every minute, on the last day of the month, only in July
Where else this cron could be used
The same expression * * * JUL * works in:
- Standard Unix
crontab(5-field syntax). - AWS EventBridge / Lambda Scheduled (with a 6th field for year, often
*). - Vercel cron jobs (declared in
vercel.json). - Quartz Scheduler and node-cron, robfig/cron and similar libraries.
Examples
- 0 18 * * *Every day at 18:00
- 0 */5 * * *Every 5 hours
- 0 18 * * 1-5Weekdays at 18:00
- 0 0 1 * *Once a month, on the 1st at midnight
Cheatsheet
Full cheatsheet| Field | Req. | Range | Wildcards |
|---|---|---|---|
| minute | yes | 0-59 | , - * / |
| hour | yes | 0-23 | , - * / |
| day of month | yes | 1-31 | , - * / |
| month | yes | 1-12 or JAN-DEC | , - * / |
| day of week | yes | 0-6 or names; some dialects use 0-7 or 1-7 — see Dialects | , - * / |
Frequently asked questions
What does the cron expression `* * * JUL *` mean?
every minute, every hour, every day, only in July.
When does `* * * JUL *` run next?
The next runs (UTC): 2027-07-01 00:00; 2027-07-01 00:01; 2027-07-01 00:02; 2027-07-01 00:03; 2027-07-01 00:04.
Is `* * * JUL *` a valid cron expression?
Yes - CronTool's parser accepts this expression and the calendar projects future runs successfully.
Run this cron in production
Stop pasting `* * * JUL *` into a host you also have to babysit.
WordPress, Shopify, Railway, Cloud Run, Vercel, HubSpot, Ghost, your own box. If it answers HTTP, Crontap can drive it on a clock you can read, in the timezone that actually matters, and page you when something breaks.
1.9k+ teams · Free forever tier · No credit card