【linux 學習】檢視目錄大小以及目錄數量的命令
[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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux檢視目錄大小及硬碟大小Linux硬碟
- Linux命令學習---目錄Linux
- Linux系統下檢視目錄大小Linux
- 【LINUX學習】檢視磁碟與目錄的資訊Linux
- Linux中如何檢視目錄下的檔案大小?Linux
- Linux檢視當前目錄下的檔案大小Linux
- 檢視linux系統硬碟目錄佔用大小Linux硬碟
- LINUX檢視目錄剩餘空間的命令Linux
- linux 檢視不同目錄的多個資料夾大小Linux
- LINUXdu檢視目錄和檔案大小Linux
- 目錄結構檢視及目錄下各個檔案的大小的統計
- 每天學習一個Linux命令-目錄Linux
- linux目錄及檔案命令學習Linux
- Centos下檢視當前目錄大小及檔案個數CentOS
- 目錄:SpringBoot學習目錄Spring Boot
- 0、Linux學習 - 目錄Linux
- 學習目錄
- 如何檢視Linux某目錄下特定檔案的總和大小Linux
- Linux如何檢視目錄佔用空間大小?常用命令是什麼?Linux
- Linux系統中什麼是父目錄?如何檢視父目錄?Linux
- linux建立目錄命令Linux
- redis學習——目錄Redis
- Flutter學習目錄Flutter
- react學習目錄React
- oracle 學習目錄Oracle
- LINUX學習(九)Linux目錄的建立與刪除命令Linux
- 如何檢視mysql目錄在哪MySql
- nginx配置web訪問以及檢視目錄檔案NginxWeb
- 查詢/home目錄下子目錄的數量
- Linux學習——2 目錄結構Linux
- 如何獲取 Linux 中的目錄大小Linux
- linux擴充套件根目錄大小Linux套件
- 數學課程目錄
- Python學習目錄Python
- [總結]學習目錄
- UWP學習目錄整理
- autosar學習總目錄
- Linux中返回上一級目錄和返回根目錄命令Linux