2011-04-26 find で複数種類の拡張子のファイルを検索する方法 UNIX 拡張子が「.sql」と「.pc」のファイルを検索する場合はこんな感じでおk。 $ find . -type f \( -name '*.sql' -o -name '*.pc' \) -print 参考 http://h50146.www5.hp.com/products/software/oe/hpux/developer/column/unixtext_app02/02.html