【Linux】ディレクトリ配下のファイルに含まれる文字を検索するコマンド
カレントディレクトリ配下の全てのファイルに対して、ある文字列が含まれているかを検索する方法
■大文字小文字を区別して検索する場合
find ./ -type f -print | xargs grep '[検索する文字]'
■大文字小文字を区別しないで検索する場合
find ./ -type f -print | xargs grep -i '[検索する文字]'
※ Readme.txt の内容
0123
Test
※ test.txtの 内容
0123
test
test0123
4567
0123test
Test
89
■投稿者ページ
HP:http://nana-h.hatenablog.com/
Author And Source
この問題について(【Linux】ディレクトリ配下のファイルに含まれる文字を検索するコマンド), 我々は、より多くの情報をここで見つけました https://qiita.com/Nana_777/items/b9e10d4451f2ef17994f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .