如何根据特定模式使用 sed 或 awk 修改特定列

如何根据特定模式使用 sed 或 awk 修改特定列

我有一个 csv 文件,如下所示:

c1,c2,c3,http://aaa.com/blblbblb\nhttp://bbb.com/sdsdsds\nhttp://ccc.com\nhttp://foo.com/ghghghgh

cc1,cc2,cc3,http://eee.com/blblbblb\nhttp://foo.com/sdsdsds\nhttp://fff.com\nhttp://ttt.com/ghghghgh

ccc1,ccc2,ccc3,http://foo.com/blblbblb\nhttp://vvv.com/sdsdsds\nhttp://foo.com/nmnmnmnm\nhttp://qqq.com\nhttp://kkk.com/ghghghgh

是否可以按如下方式操作上述 csv 文件并导出:(使用sedawk或类似的 bash 命令)

c1,c2,c3,http://foo.com/ghghghgh 

cc1,cc2,cc3,http://foo.com/sdsdsds

ccc1,ccc2,ccc3,http://foo.com/blblbblb;http://foo.com/nmnmnmnm

实际上我只想操作第四列和保留http://foo.com/{some string}模式(换句话说,当包含 foo.com 域时从第四列提取链接)

答案1

sed '
    s|http://foo.com|@|g #replace `foo.com` domain with rare symbol
    /./s/\\n\|$/;/g      #replace `\n` by `;`  and add it to end 
    s/http[^@]*;//g      #remove all domain(s) without `foo.com`
    s|@|http://foo.com|g #place `foo.com` back
    s/;$//               #remove `;` from the end of line
    ' csv.file

答案2

您可以执行以下操作:

cat your_csv.csv | sed 's/\\n/,/g' | cut -d ',' -f 4

sed当分隔符为时,会将所有 s 更改\n,并选择第 4 个字段cut,

相关内容