Linux Find 发表于 2018-06-19 | 分类于 Linux , Command find查找大文件12345678find . -type f -size +800Mfind . -type f -size +800M -print0 | xargs -0 ls -lfind . -type f -size +800M -print0 | xargs -0 du -h# 对查找结果按照文件大小做一个排序find . -type f -size +800M -print0 | xargs -0 du -h | sort -nr