Monthly Archives: March 2012

delete files older then X days

who to find and delete files older then X days:

find . -mtime +5 -exec echo rm -rf {} \;

remove the echo to really execute.