linux命令收集

carol2014 / 2023-08-04 / 原文

查看文件夹大小

#KB、MB等为单位进行显示文件夹大小
ls -lh 

#查看当前文件夹的总大小
du -sh

#直接子目录文件及文件夹大小
du -h –max-depth=0 *