服务器快要爆掉了。
一查原来是一直有上传某格式文件,文件SIZE大且数量多。而这些文件是不需要的。
find /the-target-path/*MOV*/ -name '*XXX.MOV' -type f -print
这是查找的,如果觉得列表太长,只想查看部分,比如前面的5条记录
find /the-target-path/*MOV*/ -name '*XXX.MOV' -type f -print | head -n5
接下来当然就是删除了:
find /the-target-path/*MOV*/ -name '*XXX.MOV' -type f -print | xargs rm -rf
转载请注明:Linc Hu » 脚本干活:查找特定文件类型并删除