sh Bash:如何列出每个文件和目录的大小(递归)并按大小排序?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash:如何列出每个文件和目录的大小(递归)并按大小排序?相关的知识,希望对你有一定的参考价值。

Simply navigate to directory and run following command:

du -a --max-depth=1 | sort -n
OR add -h for human readable sizes and -r to print bigger directories/files first.

du -a -h --max-depth=1 | sort -hr

以上是关于sh Bash:如何列出每个文件和目录的大小(递归)并按大小排序?的主要内容,如果未能解决你的问题,请参考以下文章

sh Bash脚本 - 使用find递归列出

如何使用 bash 从 tar.gz 存档中列出目录大小

ubuntu /bash 下递归重命名文件和目录

sh 按内存和大小顺序列出文件和子目录

linux 查看当前文件夹大小

sh [sh - 递归搜索]递归移动文件#macOS #nix #Bash