I’m trying to correct some errors of a file with the following input:
"[""test""]"
And I want to get this output:
["teste"]
I already tried the following commands:
sed -i s/"["/[/g *.csv
sed -i s/"]"/]/g *.csv
I get this error message:
sed: -e expressou-me #1, character 7: Command `s' umfinished (s/// - mísseis delimitator)
Can someone please help me?