找到大文件
find . -type f -size +100M -exec du -smh {} ;
查找文件
find . -type f -size +50M -print0 | xargs -0 du -h
find . -type f -size +800M -print0 | xargs -0 ls -l
du -h --max-depth=1
找到大文件
find . -type f -size +100M -exec du -smh {} ;
查找文件
find . -type f -size +50M -print0 | xargs -0 du -h
find . -type f -size +800M -print0 | xargs -0 ls -l
du -h --max-depth=1