SHELL=/bin/bash PATH=/sbin:/bin:/usr/sbin:/usr/bin MAILTO=root # Uncomment the following lines to activate the script. # Full backup every sunday at 4h05 am #5 4 * * sun root /usr/bin/Backup.sh -fr | /bin/mail -s "Full Backup Report `date`" root # Incremental Backup every Weekday at 4h05am #5 4 * * mon,tue,wed,thu,fri,sat root /usr/bin/Backup.sh -i | /bin/mail -s "Incremental Backup Report `date`" root # Mirror Backup - once the first of a month ? #5 7 1 * * root /usr/bin/Backup.sh -m | /bin/mail -s "Mirror backup Report `date`" root