如何使用 Linux shell 命令查找目录中最大的 10 个文件

不递归

find-largest-files.sh
find . -maxdepth 1 -type f -exec du -h {} + 2>/dev/null | sort -rh | head -n 1

递归

find-largest-files-recursive.sh
find . -type f -exec du -h {} + 2>/dev/null | sort -rh | head -n 10

Check out similar posts by category: Linux