Closed aborruso closed 8 years ago
I think the issue is that "&" is a special character. Perhaps somewhere in cols
or body
not everything is quoted properly. As a stop-gap solution, I suggest you put the sed
command into a separate script:
< input_out.csv cols -c nome body ./replace.sh
Then it works. Good luck.
@jeroenjanssens is it useful that I create a new issue related to cols
or body
and this small problem with quoting?
Thank you
Hi, I have this CSV (input_out.csv):
I would like to replace the
&
characther that I have in the first column with&
.If I write:
I have what I want. But I would like to work only in the first column. But if I write:
I have
What's wrong in my command?
Thank you