This website requires JavaScript.
Explore
Help
Register
Sign In
forget_the_bright
/
dotnet-learn-vs
Watch
1
Star
0
Fork
0
You've already forked dotnet-learn-vs
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
dotnet-learn-vs
/
WebMVC
/
WebMVCApi
/
md
/
linux 查看磁盘使用情况,查看文件夹及文件大小命令.md
forget-the-bright
f27ac51a79
提交
2023-05-12 23:19:15 +08:00
803 B
Raw
Blame
History
Unescape
Escape
icon
date
category
headerDepth
edit
2023-03-15
系统配置
Linux
5
linux 查看磁盘使用情况,查看文件夹及文件大小命令
df -h
查看磁盘使用情况
df -h
du -h --max-depth=1
列出当前文件夹下 深度为 1 的文件夹大小
du -h --max-depth
=
1
max-depth=1
,
表示几级子目录
,
如果不需要子目录
,
=0 ,即可
du -h “文件名”
列出当前文件的大小
du -h “文件名”