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.
我每天都在使用 Webmin 自动备份。我想自动删除所有早于 7 天的备份,除非它们每 15 天一次。我想我需要编写某种 bash 脚本来执行此操作,是否有人知道 webmin 内置的方法,或者已经执行此操作的脚本。
摘要: - 每日备份已经在进行。- 备份需要从当前日期起保留 7 天,否则删除,除非它是每 15 天。
谢谢
删除超过 7 天的文件的一个衬垫:
find ${path_to_files} -daystart -maxdepth 1 -mtime +7 -exec rm -rf {} \; &>/dev/null
也许您可以通过忽略恰好 x%15 天前的文件来适应您的需要...