Crontab every 2 hours
0 */2 * * *
The cron expression 0 */2 * * * runs a task every 2 hours. A crontab line has five fields: minute, hour, day of month, month and day of week. Copy the ready expression with the button above and paste it into your crontab.
Expression fields
| Minute | Hour | Day of month | Month | Day of week |
|---|---|---|---|---|
0 | */2 | * | * | * |
FAQ
How to add 0 */2 * * * to crontab?
Open your cron jobs with crontab -e and add the following line, then save the file (the job will run every 2 hours):
0 */2 * * * /path/to/script.sh
What time does cron use?
Cron uses the server time. If the job is tied to an exact time, make sure the server timezone is set correctly.
Build your own expression in the builder →
Related schedules
The most popular crontab expressions
- Cron every 5 minutes
- Cron every 10 minutes
- Cron every 15 minutes
- Cron every 30 minutes
- Cron every hour
- Cron every 3 hours
- Cron every 4 hours
- Cron every minute