06 February 2014

Command to remove files older than N days

The below command removes files older than 2 days in the current directory

sudo find .  -mtime +2 -exec rm {} \;