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.
我需要从我们不断增长的 linux 服务器中删除 60 天以上的文件。每个月都有一个文件夹,文件存储在其中。我只想从所有每月文件夹中删除文件,除了 12 月文件夹(命名为 2012_12)。我应该在脚本中放置什么条件才能在所有文件夹中找不到文件,例如 '%_12' ?
find /path/ -name '*_12' -prune -o -type f -mtime +59 -delete