find コマンドで特定の拡張子のみ指定 or 除外する

find コマンドがなかなか覚えられない。

目次

特定の拡張子のファイルのみ表示する

$ find . -type f -name "*.jpg"

特定の拡張子のファイルを除外する

$ find . -type f -not -name "*.jpg"

複数の拡張子のファイルを除外する

$ find . -type f -not -name "*.jpg" -a -not -name "*.png"

以上。