Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多以数据格式(2012-10-11)创建的文件。如何根据日期删除文件。我的意思是应该删除少于 3 个月的文件。它应该在 shell 脚本中完成。我在谷歌搜索并使用了 ubuntu 软件中心提供的工具。并且还在启动板中搜索脚本。任何人都可以帮助..
尝试这个:
寻找 。-ctime +90 -exec rm -i '{}' \;
如果你觉得很幸运,你也可以删除'-i'(删除前询问)