嗨,我是bash编程的新手。我想要一种在给定文本中搜索的方法。为此,我使用grep
函数:
grep -i "my_regex"
这样可行。但是给定data
这样的:
This is the test data
This is the error data as follows
. . .
. . . .
. . . . . .
. . . . . . . . .
Error data ends
找到单词error
(using grep -i error data
)后,我希望找到该单词后的10行error
。所以我的输出应该是:
. . .
. . . .
. . . . . .
. . . . . . . . .
Error data ends
有什么办法吗?
这回答了你的问题了吗?grep一个文件,但显示几行?
—
有机倡导者
error
。