Bag of ML Words

ML = Machine Learning, Music Love, and Miscellaneous things in daily Livings

ディレクトリ数、ファイル数を再帰的に数える

ファイル数

find <directory> -type f | wc -l

 

ディレクトリ数

find <directory> -type d | wc -l