Linux端末のファイルの内容から特定のキーワードや用語を検索して見つける方法


Originally posted here!
Linux端末のファイルの内容から特定のキーワードや用語を検索して検索するにはcat コマンドpath ファイルに| 演算子( aka pipe operator )grep コマンドと最後にキーワードを検索します.

TLドクター


# Search and find the occurrence of a specific
# word from the contents of a file
cat <PATH_TO_FILE> | grep <YOUR_SEARCH_TERM>
例えば、ファイルを持っているとしましょうmyFile.txt 以下のような内容があります.
内容の例
Wikipedia is a free content, multilingual online encyclopedia written
and maintained by a community of volunteer contributors through a
model of open collaboration, using a wiki-based editing system.
今、我々は単語の発生を見つけたいencyclopedia の内容からmyFile.txt ファイル.我々はそれを使用することができますcat and grep コマンド
# Search and find the occurrence of a specific
# word from the contents of a file
cat myFile.txt | grep encyclopedia
上記のコマンドを実行する出力はこのようになります.

あなたが見ることができるようにencyclopedia それが存在することを示す出力で強調表示されます.
上記コマンドの実行を見てくださいrepl.it .
それで😃!

お気軽に共有する場合は、この便利な発見😃.