gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 00:18:03 24 4
gpt4 key购买 nike

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

grep -in "time spent" myfile.txt

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

最佳答案

你可以 tail 它,然后 grep:

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

关于linux - 如何在指定的行号之后grep一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13109580/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com