转载自:http://www.wenzizone.com/2012/01/06/grep_lines_before_and_after_matched_line.html
是一个在文件中查找匹配字符串很有帮助的命令。指到现在,我才知道如何使用查看匹配字串的上下行内容。
让我们看一个例子
TEXT
ALICE was beginning to getvery tired of sitting byher sister on the bankand of having nothing to do:once or twice she had peepedinto the book her sister was reading,but it had no pictures or conversations in it,"and what is the use of a book," thought Alice,"without pictures or conversations?' |
如果我们现在要搜索带"bank”的行,我们应该这样写
# bank test.txt
然后我们会得到
her sister on the bank
如果我们现在想要得到这行,和这行前面的一行,我们应该这样写
# grep -B1 bank test.txt
得到的结果是这样的
very tired of sitting byher sister on the bank
如果我们要得到包含"bank”的行和其后面的两行,我们应该这样写
# grep -A2 bank test.txt
这样得到的结果是这样的
her sister on the bankand of having nothing to do:once or twice she had peeped
是不是很方便,当然这两个参数还可以同时使用。至于例子,这里就不写了,留着读者自己去探索吧。
原文可以参考:
© 2012, . 版权所有. 如转载,请注明:转载自 蚊子空间站