Tuesday, February 5, 2019

Crontab entries in UNIX

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

*     *     *     *     *  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)

No comments:

Post a Comment