linux – 在/ home /中查找大型文件(> 100 MB)以进行“清理”

前端之家收集整理的这篇文章主要介绍了linux – 在/ home /中查找大型文件(> 100 MB)以进行“清理”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在/ home /中找到大型文件(> 100 MB)进行“清理”?

这是Centos 6.x.我尝试了一些命令,但它们没有用.

解决方法

Find有它自己的-delete选项
find /home -type f -size +100M -delete

应该做你想做的事.请注意放置-delete选项的位置

Warnings: Don’t forget that the find command line is evaluated
as an expression,so putting -delete first will make find try to
delete everything below the starting points you specified.

如果你想在使用它之前测试它,那么你需要添加-depth,因为-delete暗示它.

find /home -type f -size +100M -depth
原文链接:https://www.f2er.com/linux/402179.html

猜你在找的Linux相关文章