标签: linux bash cron centos filesystems
我有一个包含centos大文件的文件夹,以及如何删除超过30分钟的文件。
请提出您的想法和摘要
答案 0 :(得分:0)
这很简单。只需使用find并在crontab中添加以下行:
find
crontab
30 * * * * find /path/to/dir -type f -mmin +30 -exec rm -f {} \;
上述命令将每30分钟运行一次,并且只删除距离目录/path/to/dir
/path/to/dir