Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

find - How do you delete files older than specific date in Linux?

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This works for me:

find /path ! -newermt "YYYY-MM-DD HH:MM:SS" | xargs rm -rf

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...