CRONTAB QUICK REFERENCE COMMANDS crontab -e - Edit crontab crontab - l : List crontab crontab -r : Remove Crontab crontab -l > xyz : Backup Crontab to xyz crontab xyz : Restore crontab from backup file xyz # Min Hour DayOfMonth Month Wkday Command # Comment * * * * * command to be executed - - - - - | | | | | | | | | +----- day of week (0 - 6) (Sunday=0) | | | +------- month (1 - 12) | | +--------- day of month (1 - 31) | +----------- hour (0 - 23) +------------- min (0 - 59) minute hour dom month dow user cmd minute : This controls what minute of the hour the command will run on, and is between '0' and '59' |