Skip to main content

特定のディレクトリ内にある拡張子を数え上げる

特定のディレクトリ内にあるファイルの拡張子を取得する

srcディレクトリを対象に行う

# fish shell
for i in (find src -type f); echo $i | sed 's/^.*\.\([^\.]*\)$/\1/' >> src.ext.txt ; end
cat src.ext.txt | sort | uniq
# bash

解説

srcディレクトリ内にある「ファイル」を一覧にする

find src -type f

参考