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.
grep コマンドを使用して、特別なパターンを含むテキスト ファイル内の行を抽出したいのですが、それらの特定の行の次の行も抽出したいと考えています。grepを使用することは可能ですか?
-Aオプションを使用して、一致後に印刷する行数を指定できます。
-A
grep -A1 pattern file
デモ:
$ cat file line one line two line three $ grep -A1 'one' file line one line two
次回man grep!
man grep