The multi line is a feature of a CSV cell, and you can use an utility that is CSV aware as Miller.
As examples, if you have this CSV you can run
mlr --csv cut -f fieldA acr.csvto cut the first columnmlr --icsv --ojson cut -f fieldA acr.csvto cut the first column and convert all toJSON
[ { "fieldA": "That's an important note,\nsome extra infos\nConcerning a password\nIpsum" }, { "fieldA": "hello" } ] As you can see Miller is aware of cell carriage return (RFC480RFC4180 compliant).
Below an image of the sample input file.
