按文件大小降序显示(linux)

于 2020-08-20 发布

有个网站提供了不同的写法,我觉得比较好用的是这个:

1
2
cd /path/to/some/where
du -hsx -- * | sort -rh | head -10

目录