Linux Workshop - Content - Exercises - Resources - Archives - RSS - About
Extra double-quotes have been added around each value.
You can either use the "sed" command or the "tr" command to fix this file.
"sed" version
$ sed -i 's/"//g' data.csv
"tr" version
$ cat data.csv | tr -d \" > data $ mv data data.csv
Previous - Index - Next