Home Linux Utils
Sort by column x:

sort +x-1
 

example to sort a file by the 3rd column:

sort +2 <myFile>


Sort doesn't have + sorts anymore. example to sort on 3rd column now

sort -k3 <myFile>