gpt4 book ai didi

linux - awk 查找字符串并下划线打印

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

我的数据如下所示:

test AA=bddddbs
result=1
cell AA=bnnndb5
result=2
cell1 BB=bnrrndb
result=3

请帮忙。查找 AA=string

test AA=bddddbs;result=1
cell AA=bnnndb5;result=2

我使用下面的命令,结果失败。

nawk '/AA=/{val=$1;next} {print val,$1}' infile

最佳答案

使用 awk 你可以这样做:

awk -v OFS=';' '/AA=/{rec=$0; getline; print rec, $0}' file

test AA=bddddbs;result=1
cell AA=bnnndb5;result=2

关于linux - awk 查找字符串并下划线打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48678674/

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