I have a csv file, and I would like to sort it by column priority, like \"order by\". For example:
3;1;2 1;3;2 1;2;3 2;3;1 2;1;3 3;2;1
If t
Charlie's answer above didn't work for me on Cygwin (sort version 2.0, GNU textutils), the following did:
sort -t"," -k2 -k1 -k1