my file contains 3 columns numbers, like 5 lines data below,
1 811036 395
2 811036 195
1 811036 295
2 811036 95
1 811036 95
I want to sort 1 column in ascending order and column 3 in descending order,
1 811036 395
1 811036 295
1 811036 95
2 811036 195
2 811036 95
I tried "sort -n -k 1 -n -k 3" but failed. how to write a single Linux shell command to accomplish this ?