Parse a cron expression into a plain-English schedule and see its next upcoming run times.
Parses a standard 5-field cron expression into a plain-English description of its schedule, and shows the next several times it would actually run — useful for double-checking a cron schedule before it goes into a crontab or CI/CD scheduler config.
Standard 5-field Unix cron syntax: minute, hour, day-of-month, month, and day-of-week, supporting *, single values, comma lists, ranges, and step values (e.g. */15) in any field.
The next-run search is capped and will tell you clearly that no matching time was found, rather than hanging indefinitely.
Yes — @yearly, @monthly, @weekly, @daily, @midnight, and @hourly are all recognized and expanded to their standard 5-field equivalent before parsing.
← All tools · Blog · FAQ