Linux Ubuntu 計算資料夾下的檔案數

摘要:Linux Ubuntu 計算資料夾下的檔案數

find ./ -type f |wc -l

計算資料夾下某副檔名的檔案數

 find ./ -type f -name *.inbox | wc -l