If you can’t use excel, use sort command instead.
If you want sort CSV file and Sort key is third column.
sort -t, -k 3 TARGET_FILE
-t,(, means delimiter)
-k 3 (means using third column as sort primary key)
If you can’t use excel, use sort command instead.
If you want sort CSV file and Sort key is third column.
sort -t, -k 3 TARGET_FILE
-t,(, means delimiter)
-k 3 (means using third column as sort primary key)