Advertisement
Guest User

Cron-Notworking

a guest
Jun 26th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. SHELL=/bin/bash
  2. PATH=/sbin:/bin:/usr/sbin:/usr/bin
  3. MAILTO=root
  4.  
  5. # For details see man 4 crontabs
  6.  
  7. # Example of job definition:
  8. # .---------------- minute (0 - 59)
  9. # | .------------- hour (0 - 23)
  10. # | | .---------- day of month (1 - 31)
  11. # | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
  12. # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
  13. # | | | | |
  14. # * * * * * user-name command to be executed
  15. @hourly root find -L /path/to/files -mtime +1 -type f \( -name '*.log' \) -a ! \( -name 'index.php' -o -name '.bash_history' \) -delete
  16. @hourly root find -L /path/to/other/files -mtime +1 -type f \( -name '*.log' \) -a ! \( -name 'index.php' -o -name '.bash_history' \) -delete
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement