Ad Space

Expression

Next run Loading...

Human Readable

Ad Space

Understanding Cron

Everything you need to know about time-based scheduling in Unix systems. Simple, powerful, and precise.

*

The Wildcard

The asterisk means "every". If used in the Minute field, it triggers every minute.

/

The Step

The slash defines increments. */15 in minutes means "every 15 minutes" (0, 15, 30, 45).

Fields Reference

Field Required Allowed Values Allowed Special Characters
MinuteYes0-59, - * /
HourYes0-23, - * /
Day of MonthYes1-31, - * / ? L W
MonthYes1-12 or JAN-DEC, - * /
Day of WeekYes0-6 or SUN-SAT, - * / ? L #

Frequently Asked Questions