I have this script that I thougth only deleted stuff more than 90 days old but after I ran it, it deleted pretty much everything on my backup drive. Thankfuly I have another backup drive so I did not lose my backup but I need to fix this so it only deletes things older than 90 days.
find /Volumes/Backup/* -type d -mtime +90 -exec rm -R {} \;
Thanks