1.查找linux 根目录大于1G的文件
find / -type f -size +1G
查找系统大文件
2.找出根目录所有大于1G的文件,并列出每个文件真实大小
find / -type f -size +1G -print0 | xargs -0 du -h
查找系统大文件
3. [[email protected] u03]# find . -type f -size +800M -print0 | xargs -0 ls -l 列出文件
查找系统大文件

相关文章: