Does anyone have a script that can find all of the .mozilla Cache folders and rm -rf them from /home?
How about something like this:
WARNING, this has not been tested. I accept no responsibility if it deletes all files on your drive.
find / -regex .*\.mozilla.*Cache.* -exec rm '-fR' '{}' ';'