雑記まみむメモ

雑記、メモ、技法、話題の騒動などを紹介します。

てっとり早く、サーバー上の大量のファイルから指定キーワードがあるファイルを取得するコマンド

find ./ -type f -print | xargs grep 'キーワード';

 キーワードに検索したいワードを設定する

find ./ -type f -print | xargs grep 'test.php';
./tree:| | | | | |--config.apptest.php
./tree:| | | | | |--config.test.php
./tree:| | | | | |--database.test.php
./tree:| | | | | | |--test.php

 

 検索結果