Markdown Preview
Write Markdown and preview rendered headings, lists, links, tables, code blocks, and other supported HTML output side by side.
Explain cron expressions in plain English, preview upcoming run times, and generate five-field, seconds, or Quartz-style schedules.
Use this tool when creating scheduled jobs for servers, background workers, CI tasks, reports, reminders, or maintenance scripts.
This tool supports standard 5-field Unix cron, 6-field expressions with seconds, and Quartz-style 6-field expressions with ? for day-of-month or day-of-week. It handles common wildcards, ranges, lists, steps, month names, and weekday names in the browser.
Cron syntax is compact, which makes it easy to paste into a scheduler and hard to read during review. The summary and next-run list are meant to catch mistakes such as running every minute instead of every hour, choosing the wrong weekday, or mixing Unix and Quartz field order.
Use the format selector when your target scheduler is known. Linux crontab, GitHub Actions, cloud schedulers, Rails jobs, and Java Quartz schedulers do not all accept the same field count or special characters.
The tool normalizes the expression into seconds, minutes, hours, day-of-month, month, day-of-week, and optional year fields. It then turns the schedule into a plain-English explanation and calculates upcoming run times from the browser's current timezone.
Next run previews are generated by checking the calendar fields against future times. They are a practical validation aid, but the scheduler that finally runs the job is still the source of truth for timezone, daylight saving behavior, and unsupported cron extensions.
Cron syntax depends on the scheduler. Traditional Unix cron normally uses five time fields, while some systems add a leading seconds field or a trailing year field. Quartz also gives special meanings to characters such as ?, L, and #. Select the matching mode and compare the generated expression with the documentation for the service that will run it.
The POSIX crontab specification documents the portable five-field form and its environment. Managed platforms and Quartz-style schedulers can extend or replace those rules, so their own documentation takes precedence for deployment.
Time zone is part of the schedule even when it is not written in the expression. A server may use UTC, local system time, an account setting, or a job-level zone. Daylight-saving transitions can skip a local time or make it occur twice. For a critical daily job, decide whether the requirement is tied to a local clock or to a fixed elapsed interval.
Day-of-month and day-of-week fields are a common source of surprises. Some cron implementations run when either field matches, while other schedulers document different rules. Preview several future dates, including month ends, weekends, leap days, and the next daylight-saving transition. Do not infer a scheduler's semantics only from the plain-English explanation.
A schedule controls when a job starts, not whether the previous run finished. If a task can run longer than its interval, add a lock, queue policy, or idempotency protection in the application. Decide how retries work and what happens after downtime. Standard cron may not automatically replay a job that was missed while the machine was off.
Use an explicit environment. Cron jobs often have a smaller PATH, a different working directory, and none of the shell profile settings available in an interactive terminal. Reference stable command paths, set the needed variables in a secure place, and direct output to observable logs. Never place passwords or tokens directly in a command that can appear in process listings or configuration history.
Start with a harmless command and a temporary frequent schedule, then confirm timestamps and output in the real runtime. Restore the intended frequency only after the test succeeds. For destructive or costly work, add a dry-run mode and an alert for failure. The upcoming-run preview here is a planning aid; the deployed scheduler's own next-run display and logs are the final check.
Document the schedule beside the job: its time zone, owner, expected duration, dependencies, retry policy, and safe manual command. That information is more useful during an incident than the expression alone. Review schedules after platform migrations and time-zone changes because a syntactically valid expression can quietly run at the wrong local time.
Watch for load concentrated at familiar boundaries. A job scheduled at midnight or at minute zero may compete with backups and many other tasks. Choose an offset when the exact minute is unimportant. If several jobs must run in order, use a workflow system or explicit dependency rather than hoping their start times leave enough room.
Built and maintained by utilkit. Updated . Found an issue? Send corrections to contact@utilkit.com
Write Markdown and preview rendered headings, lists, links, tables, code blocks, and other supported HTML output side by side.
Beautify, minify, validate, and sort JSON in your browser while reviewing syntax errors, nested data, arrays, and object keys.
Format SQL queries in your browser with dialect-aware indentation, keyword casing, comma placement, and configurable spacing options.