标签: grep
我想使用grep命令在包含特殊模式的文本文件中提取这些行,但我还想提取这些特定行的下一行。是否可以使用grep?
答案 0 :(得分:4)
您可以指定匹配后要打印的行数与-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