April 2026
Showing next 1000 cron schedules (Keep in mind some crons might be 'cut off' sooner than others depending on their frequency)
Showing next 1000 cron schedules (Keep in mind some crons might be 'cut off' sooner than others depending on their frequency)
Add as many cron expressions as you need and CronTool plots every run on a single shared calendar. Color-code each schedule, label it, and instantly spot overlaps, off-hours misfires, or weekend surprises — exactly what a cron viewer is for.
The multi-cron mode is the right tool whenever a single cron expression isn't enough — for example, running a job at two different daily times, firing on the last day of every month, or running every 15 minutes except for one excluded hour. Drop your crontab -l output into the file uploader above and CronTool decodes the whole file at once.
See some of the most common use cases that require multiple crons to get right (mostly).
Example 1
Run a cron at two different set times. For example, I want a cron to run twice daily, at 8:30am and 11:30pm.
This cannot be done with a single cron. You need two separate ones, like so:30 8 * * * command
30 23 * * * command
Example 2
Run a cron every 15 minutes throughout the day except at 3AM.
This cannot be done with a single cron. You need two separate ones, like so:*/15 0-2,4-23 * * * command
15-45/15 3 * * * command
Example 3
Run a cron at the last day of every month.
This cannot be done with a single cron in standard crontab. You need three separate ones, like so:0 0 30 4,6,9,11 * command
0 0 31 1,3,5,7,8,10,12 * command
0 0 28,29 2 * command
Note: this has a caveat. On leap years, it will run both on the 28th & 29th of February. Some cron implementations support the L modifier, which can be used to run a cron on the last day of the month — see the dedicated last-day-of-month guide for the full pattern across Quartz, AWS, robfig and other dialects.
Run multi-cron in production
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.
Free forever tier ・ No credit card required
Schedule
“every 5 minutes”
Next run
in 23s