⏰ Linux Cron Job Schedule & Expression Builder
Crontab Generator & Schedule Describer
Build, test, and describe 5-field cron schedule expressions with human-readable English translations and upcoming execution timelines.
Cron String:
Common Schedules:
Every 5 Minutes (*/5 * * * *)
Every Hour (0 * * * *)
Daily Midnight (0 0 * * *)
Weekdays at 4 AM (0 4 * * 1-5)
1st of Month (0 0 1 * *)
Weekly Sunday (0 0 * * 0)
Human-Readable English Description
“Every 15 minutes, every hour, every day.”
Simulated Next 5 Scheduled Trigger Times (UTC):
Crontab Special Characters & Wildcards
*(Asterisk) : Matches any and every possible value in that time field.,(Comma) : Specifies a list of discrete values (e.g.1,15,30).-(Hyphen) : Defines an inclusive continuous range (e.g.1-5for Monday to Friday)./(Slash) : Specifies step intervals (e.g.*/10for every 10 units).