4
我如何在bash中的grep结果之前/之后获取行?
嗨,我是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。所以我的输出应该是: . . . …