I want to sort a text file through linux sort
, that looks like this
v 1006
v10 1
v 1011
I would expect result like this:
v 1006
v 1011
v10 1
However, using sort
, even with all kinds of options, the v10 1
line is still in the middle. Why? I would understand v10 1
being either on top on on the bottom (depending if space character is smaller or bigger than 1
), but for what reason it is kept in the middle?