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

查看当前目录大小:

[root@21andy.com]# du -sh

 

查看指定目录大小:

[root@21andy.com]# du -sh /www/21andy.com

 

查看当前目录文件总数:

[root@21andy.com]# find . -type f |wc -l

 

查看指定目录文件总数:

[root@21andy.com]# find /www/21andy.com -type f |wc -l

 

查看当前目录的目录总数:

[root@21andy.com]# find . -type d |wc -l

 

查看指定目录的目录总数:

[root@21andy.com]# find /www/21andy.com -type d |wc -l

 

 

 

转:http://www.21andy.com/new/20100407/1807.html

posted @ 2013-12-26 20:17  shuaixf  阅读(430)  评论(0编辑  收藏  举报