用于定位Linux中当前目录下哪些文件夹最占有空间的命令

du -h --max-depth=8  | sort -hr | head -n 10

#one_command
 
 
Back to Top