如何根據特定模式使用 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,

相關內容