file size older than x days
$ find . -mtime +[number of days]$ find . -mtime +180 -exec du -ks {} \; | cut -f1 | awk '{total=total+$1}END{print total/1024}'Last updated
$ find . -mtime +[number of days]$ find . -mtime +180 -exec du -ks {} \; | cut -f1 | awk '{total=total+$1}END{print total/1024}'Last updated