标签: linux ubuntu service filesystems
我正在尝试编写一些在linux下运行的东西(ubuntu服务器)。我需要某种服务,从文件系统(自己的云存储文件夹)中删除超过2天的文件。
最好的方法是什么?
答案 0 :(得分:2)
使用find
find
find topdir -type f -mtime +2 -exec rm {} +
使用cron定期运行。
cron