Monday, September 27, 2010

How to remove all files older than

find . -type f -mtime +4 | while read line ; do rm $line ; done;