Guest User

Untitled

a guest
Feb 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. ## CRONTAB HINTS AND TIPS
  2. ##
  3. ##
  4. ## Entry Description Equivalent To
  5. ## @yearly (or @annually) Run once a year at midnight in the morning of January 1 0 0 1 1 *
  6. ## @monthly Run once a month at midnight in the morning of the first of the month 0 0 1 * *
  7. ## @weekly Run once a week at midnight in the morning of Sunday 0 0 * * 0
  8. ## @daily Run once a day at midnight 0 0 * * *
  9. ## @hourly Run once an hour at the beginning of the hour 0 * * * *
  10. ## @reboot Run at startup @reboot
  11. ##
  12. ## * * * * * command to be executed
  13. ## ┬ ┬ ┬ ┬ ┬
  14. ## │ │ │ │ │
  15. ## │ │ │ │ │
  16. ## │ │ │ │ └───── day of week (0 - 7) (0 or 7 are Sunday, or use names)
  17. ## │ │ │ └────────── month (1 - 12)
  18. ## │ │ └─────────────── day of month (1 - 31)
  19. ## │ └──────────────────── hour (0 - 23)
  20. ## └───────────────────────── min (0 - 59)
  21. ##
  22. ##
  23. ##
  24. ## The following example will run each 10 minutes
  25. ## */10 * * * * /usr/bin/somedirectory/somecommand
  26.  
  27. ## Disable E-mail notifications
  28. MAILTO=""
  29.  
  30. ## Set where to look for executable files
  31. PATH=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:$PATH
  32.  
  33. ## Ok, we are ready to go. Put your schedules below :-)
Add Comment
Please, Sign In to add comment