September 2026 · UTC
0 runs
September 2026 · UTC
0 runs
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
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.
1.9k+ teams · Free forever tier · No credit card