Precomputed Configurations
Temporal Field Matrix
Minute
Hour
Day (Month)
Month
Weekday
Trace Exported
Compiled Daemon Instructions
* * * * *
Trigger mapping on every sequential cycle.
MIN HOUR DOM MON DOW

Cron Job Generator: Schedule Linux Tasks

If you manage a Linux server, you rely on the Cron daemon to execute automated tasks in the background—whether it is backing up a database every midnight, clearing cache files every Sunday, or polling an API every 5 minutes. However, writing the raw 5-point Cron expression (e.g., 0 12 * * 1-5) from memory is notoriously difficult and highly error-prone. A single misplaced asterisk can cause a script to execute thousands of times a minute, crashing your server.

Our free online Cron Job Generator provides a foolproof GUI to construct complex temporal triggers. By selecting your desired schedule from the dropdown matrices, the tool instantly compiles the exact syntax required by your Linux server and translates it into plain English to verify your logic.

Understanding the 5-Point Matrix

A standard Cron expression consists of five sequential fields separated by spaces. The tool maps to these exact parameters:

  • Minute (0-59): The exact minute of the hour the task runs. An asterisk (*) means "every minute."
  • Hour (0-23): The hour of the day (in military time). 0 is midnight, 12 is noon.
  • Day of Month (1-31): The specific calendar date.
  • Month (1-12): The calendar month.
  • Day of Week (0-6): The specific weekday, where 0 represents Sunday.

Frequently Asked Questions (FAQs)

How do I apply this to my server?
Copy the generated string. SSH into your Linux server and type crontab -e to open the editor. Paste the generated string, followed by a space, and then the absolute path to the script you want to run (e.g., 0 0 * * * /usr/bin/php /var/www/script.php).
What does a slash (/) mean in Cron?
A slash represents a step value. If you type */5 in the Minute field, it means "execute every 5 minutes." If you type */2 in the Hour field, it means "execute every 2 hours."
Does this work for AWS EventBridge?
Yes! Cloud providers like AWS (EventBridge), Google Cloud (Cloud Scheduler), and Azure all use the standard 5-point UNIX cron syntax generated by this tool.

Schedule Your Automation

Stop guessing syntax and crashing servers. Scroll up, configure your matrices, and generate a safe Cron string.