Cron Job Generator
Generate a cron job schedule for your tasks
Cron Syntax Explanation:
- * means "every" (e.g., * in the minute field means "every minute")
- Use commas to separate multiple values (e.g., 1,15 in the day field means the 1st and 15th day)
- Use hyphens for ranges (e.g., 1-5 in the day-of-week field means Monday to Friday)
- Use */n for "every n time units" (e.g., */15 in the minute field means "every 15 minutes")
Result Explanation:
The generated cron job is in the format:
* * * * * command_to_execute
Field order: Minute Hour Day Month Day-of-week Command
Example: 0 2 * * * /usr/bin/backup
This means: Run the backup command at 2:00 AM every day
If you find this tool useful, please share it with others!