我想删除超过15天的文件。文件目录是
/home/app_admin/files
“文件”目录中有100多个文件夹,我只想删除超过15天的文件而不删除文件夹。
在'files'目录中,有许多文件夹,如下↓↓↓
16 Jwellary Image Clipping
300 photos to be retouched
Ashraf Amin
Background removal
Background removal and retouching
Brad C
Change wording in a Photoshop file
Color Correct 123 Product Photos
cut out some high res photos
我想删除此文件夹中的文件。
任何人都可以帮我解决这个问题。
答案 0 :(得分:1)
首先检查要删除的内容:
find path/to/basedir -mtime +15 -type f
如果输出看起来不错,请添加-delete
:
find path/to/basedir -mtime +15 -type f -delete