Cron Examples - Electronickss/TheaterTrailers GitHub Wiki
Cron syntax
* * * * * *
| | | | | | +-- Year (range: 1900-3000)
| | | | | +---- Day of the Week (range: 1-7, 1 standing for Monday)
| | | | +------ Month of the Year (range: 1-12)
| | | +-------- Day of the Month (range: 1-31)
| | +---------- Hour (range: 0-23)
| +------------ Minute (range: 0-59)
Example
Run once a day at 3:41 am
41 3 * * * python /opt/TheaterTrailers/theaterTrailers.py
Run every four hours, on the hour
00 */4 * * * python /opt/TheaterTrailers/theaterTrailers.py