> Linux教程 > Linux学习 >

Linux查看目录大小及文件数量命令

查看当前目录大小:
[root@it.net.cn]# du -sh


查看指定目录大小:
[root@it.net.cn]# du -sh /www/it.net.cn


查看当前目录文件总数:
[root@it.net.cn]# find . -type f |wc -l


查看指定目录文件总数:
[root@it.net.cn]# find /www/it.net.cn -type f |wc -l


查看当前目录的目录总数:
[root@it.net.cn]# find . -type d |wc -l

查看指定目录的目录总数:
[root@it.net.cn]# find /www/it.net.cn -type d |wc -l


查看磁盘剩余空间df -hl (责任编辑:IT)