crontab 511 B

12345678910111213141516171819202122232425
  1. #
  2. # /etc/crontab - Tables for driving cron.
  3. #
  4. # Columns:
  5. # minute, hour, day of month, month, day of week, command
  6. #
  7. # Separator:
  8. # Any number of tabs or spaces.
  9. #
  10. # Value:
  11. # * (wildcard), 30 (number), */N (repeat), 1-5 (range), or 1,3,6 (list)
  12. #
  13. # Run once an hour
  14. 0 * * * * /usr/bin/run-parts /etc/cron.hourly
  15. # Run once a day
  16. 0 0 * * * /usr/bin/run-parts /etc/cron.daily
  17. # Run once a week
  18. 0 0 * * 0 /usr/bin/run-parts /etc/cron.weekly
  19. # Run once a month
  20. 0 0 1 * * /usr/bin/run-parts /etc/cron.monthly