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?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…