Tengo un archivo csv parecido a este:
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
¿Es posible manipular el archivo csv anterior y exportarlo de la siguiente manera: (usando comandos bash similares sed
o similares)?awk
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
En realidad, quiero manipular solo la cuarta columna y http://foo.com/{some string}
el patrón Permanecer (en otras palabras, extraer enlaces de la cuarta columna cuando contiene el dominio foo.com)
Respuesta1
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
Respuesta2
Puedes hacer lo siguiente:
cat your_csv.csv | sed 's/\\n/,/g' | cut -d ',' -f 4
sed
cambiará todos los \n
s a ,
y cut
elegirá el cuarto campo cuando el delimitador sea,