次のような 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 ファイルを操作して次のようにエクスポートすることは可能ですか? (sed
またはawk
同様の 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
実際には、4 列目と Remain パターンのみを操作したいhttp://foo.com/{some string}
(つまり、foo.com ドメインが含まれている場合に 4 列目からリンクを抽出したい)
答え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
区切り文字\n
が,
cut
,