Advertisement
Guest User

Untitled

a guest
May 28th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.64 KB | None | 0 0
  1. #
  2. # Default time layout:
  3. #
  4. #  field          allowed values
  5. #  -----          --------------
  6. #  minute         0-59
  7. #  hour           0-23
  8. #  day of month   1-31
  9. #  month          1-12
  10. #  day of week    0-7 (0 or 7 is Sun)
  11. #
  12. #
  13. # Aliases that can be used:
  14. #
  15. #  string      meaning
  16. #  ------      -------
  17. #  @reboot     Run once, at startup.
  18. #  @yearly     Run once a year, "0 0 1 1 *".
  19. #  @annually   (sames as @yearly)
  20. #  @monthly    Run once a month, "0 0 1 * *".
  21. #  @weekly     Run once a week, "0 0 * * 0".
  22. #  @daily      Run once a day, "0 0 * * *".
  23. #  @midnight   (same as @daily)
  24. #  @hourly     Run once an hour, "0 * * * *".
  25. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement