特定ディレクトリ以下のhtmlのファイル数を調べたい。
よく忘れる・・・。
一旦以下のコマンドで検索し結果を確認する
find ./対象ディレクトリ -path "./除外ディレクトリ名" -prune -o -name "*.html" -type f
で、「| wc -l」を追加してファイル数を取得。
find ./対象ディレクトリ -path "./除外ディレクトリ名" -prune -o -name "*.html" -type f | wc -l
※このとき除外のディレクトリ名が入ってるので-1しとくw