Deletes all files in the folders trash and spam which are more than 7 days old
by
Wyden Silvan
—
last modified
26.12.2009 20:11
find /my/subfolder/ -regex '.*/\.\(Trash\|Spam\)\(/.*\)?\/\(cur\|new\)/.*' -type f -mtime +7 -exec rm '{}' \;
