Example: Delete all files in the current directory older than 2 years / 730 days
find ./* -mtime +730 -exec rm {} \;
Adjust +730 to any number of days you need.
+730
H@ppy H@cking