gpt4 book ai didi

linux - grep : get matching string before certain string

转载 作者:太空宇宙 更新时间:2023-11-04 10:47:57 25 4
gpt4 key购买 nike

我的日志文件包含以下格式的日志:

id=tom idfrom=apple
id=tom777 idfrom=apple
id=tom 545 idfrom=facebook
id=tom.232 idfrom=yahoo

当我执行 grep -w "tom"myfile 时,我得到了四个,但我只想要第一个。这特别困难,因为用户 ID 中可能有空格(例如,对于第三个,ID 是“tom 545”)。我必须得到 idfrom 之前和 id= 之后的字符串,前后没有空格。

我该怎么做?

已编辑:我只想要每个 ID,而不是整行,我想要的输出应该是:

tom
tom777
tom 545
tom.232

最佳答案

使用 GNU grep 获取“id=”和“idfrom”之间的部分:

grep -Po '(?<=id=).*(?= idfrom)' file

输出:

tomtom777tom 545tom.232

关于linux - grep : get matching string before certain string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32271939/

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