I used the below command to delete files older than a year.
find /path/* -mtime +365 -exec rm -rf {} ;
But now I want to delete all files whose modified time is older than 01 Jan 2014. How do I do this in Linux?
question from:https://stackoverflow.com/questions/33091013/how-do-you-delete-files-older-than-specific-date-in-linux