I'm trying to correct some formatting errors in a file and I have as input:
"[""teste""]"
And I wanted to get an output like this:
["teste"]
I already tried this command but it gives me error:
sed -i s/"["/[/g *.csv
sed -i s/"]"/]/g *.csv
The error displayed is as follows:
sed: -e expressão #1, caractere 7: Comando 's' inacabado (s/// - faltou delimitador)
Can someone help me?