Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の検索コマンドがあります。検索を *.py ファイルのみに制限する方法はありますか?
find . | xargs grep 'GIT' -sl
ありがとう、
あなたはすでに を使用してfindいるので、簡単です。1 つの方法を次に示します。
find
find . -name '*.py' -print | xargs grep 'GIT' -sl {}
うん。のほとんどのバージョンはfind、オプションで指定したワイルドカードを認識し-nameます。
-name
find . -name \*.py | xargs grep 'GIT' -sl
ソース
はい、アスタリスク文字 (*) を使用できます。
find . -name' *.py'