Cron Expression
*/10 * * * *
Learn how to create a cron expression for 'cron every 10 minutes'. Runs every 10 minutes with our free cron generator tool.
Field | Value | Meaning |
---|---|---|
Minute | */10 | Every 10 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 10 minutes
*/10 * * * *
Runs every 10 minutes
This cron schedule is commonly used for:
crontab -e
*/10 * * * * /path/to/your/script.sh
*/10 * * * * /path/to/script.sh >> /var/log/cron.log 2>&1
*/10 * * * * /path/to/script.sh || mail -s "Cron job failed" admin@example.com