Linux Workshop - Content - Exercises - Resources - Archives - RSS - About
The file contains extra blank lines.
Use the "sed" command to delete empty lines.
You will need to use a regular expression to have a pattern matching empty lines.
$ sed -i '/^$/d' data.csv
Previous - Index