Ubuntu 統計檔案個數的命令

2021-09-29 16:39:56 字數 616 閱讀 1843

1、統計當前資料夾內檔案數量且包含子目錄中的檔案數量,命令如下:

ls -lr|grep "^-"| wc -l
2、統計當前資料夾內檔案數量且不包含子目錄檔案數量,命令如下:

ls -l|grep "^-"| wc -l
3、統計當前資料夾下的目錄個數且包含子目錄

ls -lr|grep "^d"| wc -l
4、統計當前資料夾下的目錄個數

ls -l |grep "^d"| wc -l
以上四條命令大家不難看出,當有 r 這個引數的時候,統計都是包含子目錄的。

5、統計包含部分字首的命令如下:

ls -lr data*/|grep "^-"| wc -l
6、檢視當前目錄下每個資料夾的大小

du -h --max-depth=1
註解:

1) data*/ 代表統計字首為data的檔案

2) grep "^-"代表統計檔案

3)grep "^-" 代表統計目錄

ubuntu統計某資料夾下檔案的個數

統計某資料夾下檔案的個數 ls l grep wc l 統計某資料夾下目錄的個數 ls l grep wc l 統計資料夾下檔案的個數,包括子資料夾裡的 ls lr grep wc l 如統計 home han目錄 包含子目錄 下的所有js檔案則 ls lr home han grep js wc ...

linux統計當前檔案個數命令

檢視當前目錄下檔案的個數 ls l grep wc l 檢視當前目錄下檔案的個數,包括子目錄裡的 ls lr grep wc l 檢視當前目錄下資料夾 目錄 的個數,包括子目錄裡的 ls lr grep wc l 其中 ls list directory contents l use a long ...

VBA 統計檔案個數

說明 1第乙個sheet名為sheet1,第二個名為step 2兩個sheet相比較,如果相同,將檔案個數放到sheet1的第二列 sub countstep countstep macro keyboard shortcut ctrl shift t dim sheetycnt as intege...