我有一个大文本文件,我想查看"time spent"此文本文件中包含的行,我使用:
"time spent"
grep -in "time spent" myfile.txt
但是我只对50000之后的行感兴趣。在输出中,我想查看50000之后的行,其中包含“花费的时间”。有没有办法做到这一点?
您可以拖尾,然后grep:
tail -n +50000 myfile.txt | grep -in "time spent"