小编典典

如何在指定的行号后grep一个字符串?

linux

我有一个大文本文件,我想查看"time spent"此文本文件中包含的行,我使用:

grep -in "time spent" myfile.txt

但是我只对50000之后的行感兴趣。在输出中,我想查看50000之后的行,其中包含“花费的时间”。有没有办法做到这一点?


阅读 491

收藏
2020-06-07

共1个答案

小编典典

您可以拖尾,然后grep:

tail -n +50000 myfile.txt | grep -in "time spent"
2020-06-07