我需要使用 sed 查找匹配项并删除该匹配项之前的 2 行和之后的 3 行
我需要使用“sed”找到一个匹配项,并删除该匹配项之前的 2 行和之后的 3 行,然后打印输出,我该怎么做?
I need to find a match using "sed" and deletes 2 lines before this match and 3 lines after it, and print the output , how can i do that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果文件不大,请尝试以下操作:
我没有测试,但应该可以工作。
if the file is not huge, try this:
I didn't test, but should work.
首先,您不想在 sed 中执行此操作。第二,你的问题提出得不好:如果第 5 行和第 8 行匹配,你会怎么做?是否删除第 8 行并保留第 6 行?假设这不是问题,这似乎可以满足您的要求:
注意:如果匹配发生在文件的最后 3 行中,则不会按预期运行。这个案例留给(受虐狂)读者作为练习。
First off, you do not want to do this in sed. 2nd, your question is ill posed: what do you do if you have a match on lines 5 and 8? Does line 8 get deleted and line 6 is kept? Assuming that's not a concern, this seems to do what you want:
Note: if the match occurs in the last 3 lines of the file, this does not behave as desired. That case is left as an exercise for the (masochistic) reader.