Created
October 8, 2019 03:41
-
-
Save eczn/cf65661efe18d8469a1b1fb68fa54692 to your computer and use it in GitHub Desktop.
Mac 查看文件夹大小
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 查看当前文件夹大小 | |
du -h -d 0 | |
# 查看当前文件夹下各个子目录的大小 | |
du -h -d 1 | |
# 等价于 du -h -d 0 | |
du -h -s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment