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