Unix sort using unknown delimiter (last column)
问题 My data looks like this: Adelaide Crows 5 2 3 0 450 455 460.67 8 Essendon 5 5 0 0 622 352 955.88 20 Fremantle 5 3 2 0 439 428 598.50 12 As you can tell, there is a mixture of spaces and tabs. I need to be able to sort the last column descending. So the ouput looks like this: Essendon 5 5 0 0 622 352 955.88 20 Fremantle 5 3 2 0 439 428 598.50 12 Adelaide Crows 5 2 3 0 450 455 460.67 8 The whole data consists of all AFL teams. Using sort how can I achieve this. Am i right in attempting to use