6

Tip #569   Remove or delete columns from a csv file

cut -d"," -f1,5 file.csv > newfile.csv

Will return only the 1st and 5th columns of a comma-delimited csv file.