【linux 學習】檢視目錄大小以及目錄數量的命令

楊奇龍發表於2010-11-26

[root@localhost /]# cd /etc
檢視 當前目錄大小
[root@localhost etc]# du -sh
92M     .
[root@localhost etc]# du . -sh /etc
92M     .
92M     /etc
檢視當前目錄的檔案數量
[root@localhost etc]# find . -type f |wc -l
1256
檢視指定目錄的檔案的數量
[root@localhost etc]# find /etc -type f |wc -l
1256
檢視當前目錄裡子目錄的數量
[root@localhost etc]# find . -type d |wc -l
204
[root@localhost etc]# find /etc -type d |wc -l
204
[root@localhost etc]# 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22664653/viewspace-680413/,如需轉載,請註明出處,否則將追究法律責任。

相關文章