Find the size of a directory

du -sh /dir

How to remove files older than 60 days

find * -mtime +60 -exec rm -R {} \;