Advertisement
Guest User

crontab -l

a guest
Oct 13th, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. root@Tower:/mnt/cache/logs# crontab -l
  2. # If you don't want the output of a cron job mailed to you, you have to direct
  3. # any output to /dev/null. We'll do this here since these jobs should run
  4. # properly on a newly installed system. If a script fails, run-parts will
  5. # mail a notice to root.
  6. #
  7. # Run the hourly, daily, weekly, and monthly cron jobs.
  8. # Jobs that need different timing may be entered into the crontab as before,
  9. # but most really don't need greater granularity than this. If the exact
  10. # times of the hourly, daily, weekly, and monthly cron jobs do not suit your
  11. # needs, feel free to adjust them.
  12. #
  13. # Run hourly cron jobs at 47 minutes after the hour:
  14. 47 * * * * /usr/bin/run-parts /etc/cron.hourly 1> /dev/null
  15. #
  16. # Run daily cron jobs at 4:40 every day:
  17. 40 4 * * * /usr/bin/run-parts /etc/cron.daily 1> /dev/null
  18. #
  19. # Run weekly cron jobs at 4:30 on the first day of the week:
  20. 30 4 * * 0 /usr/bin/run-parts /etc/cron.weekly 1> /dev/null
  21. #
  22. # Run monthly cron jobs at 4:20 on the first day of the month:
  23. 20 4 1 * * /usr/bin/run-parts /etc/cron.monthly 1> /dev/null
  24. 0 5 * * 1 /usr/local/emhttp/plugins/ca.backup2/scripts/backup.php &>/dev/null 2>&1
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement