How to find files and delete them over a certain age:

EG .html files over 28 days old

find -name “*.html” -mtime +28 -type f -exec rm {} \;