常见Linux命令

查找大文件并倒序

find . -type f -size +1M -print0 | xargs -0 du -h | sort -nr

你可能感兴趣的:(常见Linux命令)