1

我想使用 grep 命令来提取文本文件中包含特殊模式的那些行,但我也想提取这些特定行的下一行。可以使用grep吗?

4

1 回答 1

4

您可以使用以下选项指定匹配后要打印的行数-A

grep -A1 pattern file

演示:

$ cat file
line one 
line two
line three

$ grep -A1 'one' file
line one 
line two

下次man grep

于 2012-12-07T15:01:08.947 回答