我的日志文件包含以下格式的日志:
id=tom idfrom=apple
id=tom777 idfrom=apple
id=tom 545 idfrom=facebook
id=tom.232 idfrom=yahoo
当我做的时候,我得到了四个,但是我只想要第一个。这尤其困难,因为用户id中可能有空格(例如,第三个id是“tom 545”)。我必须得到
grep -w "tom" myfile
之前和idfrom
之后的字符串,前后没有空格。我该怎么做?
编辑:我只想要每个id,而不是整行,我想要的输出应该是:
tom
tom777
tom 545
tom.232
最佳答案
使用GNU grep获取“id=”和“idfrom”之间的部分:
grep -Po '(?<=id=).*(?= idfrom)' file
输出:
汤姆
tom777型
汤姆545
汤姆232
关于linux - grep:在某些字符串之前获取匹配的字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32271939/