Cron Expression
*/7 * * * *
Learn how to create a cron expression for 'cron every 7 minutes'. Runs every 7 minutes with our free cron generator tool.
Field | Value | Meaning |
---|---|---|
Minute | */7 | Every 7 minutes |
Hour | * | Any hour |
Day of Month | * | Any day |
Month | * | Any month |
Day of Week | * | Any day of the week |
This cron expression represents: cron every 7 minutes
*/7 * * * *
Runs every 7 minutes
This cron schedule is commonly used for:
crontab -e
*/7 * * * * /path/to/your/script.sh
*/7 * * * * /path/to/script.sh >> /var/log/cron.log 2>&1
*/7 * * * * /path/to/script.sh || mail -s "Cron job failed" admin@example.com