Given a file txt
:
ab
a c
a a
When calling sort txt
, I obtain:
a a
ab
a c
In other words, it is not proper sorting, it kind of deletes/ignores the whitespaces! I expected this to be the behavior of sort -i
but it happens with or without the -i
flag.
I would like to obtain "correct" sorting:
a a
a c
ab
How should I do that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…