Linux 查询大于 100M 的文件并排序:

find / -type f -size +100M  -print0 | xargs -0 du -h | sort -nr

附:Linux下查找指定时间更改的文件命令