who to find and delete files older then X days:
find . -mtime +5 -exec echo rm -rf {} \;
remove the echo to really execute.
who to find and delete files older then X days:
find . -mtime +5 -exec echo rm -rf {} \;
remove the echo to really execute.