Linux 某个目录下的文件按大小排序
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1. df -lh
2. du -s ./* | sort -rn
这是按字节排序
3. du -sh ./* | sort -rn
这是按兆(M)来排序
4.选出排在前面的10个
du -s ./* | sort -rn | head
5.选出排在后面的10个
du -s ./* | sort -rn | tail
说明:./*也可以改成你想到达的任何目录
如/usr/local/ 这个目录就可以写成
/usr/local/*
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献9条内容
所有评论(0)