Consider this tiny text file:
ab
a
If we run it through sort(1), we get
a
ab
because of course a
comes before ab
.
But now consider this file:
ab|c
a|c
If we run it through sort -t'|'
, we again expect a
to sort before ab
, but it does not! (Try it under your version of Unix and see.)
What I think is happening here is that the -t
option to sort
is not really delimiting fields -- it may be changing the way (say) the start of field 2 would be found, but it's not changing the way field 1 ends. a|c
sorts after ab|c
because '|'
comes after 'b'
in ASCII. (It's as if the -t'|'
argument is ignored, because you get the same result without it.)
So is this a bug in sort
or in my understanding of it? And is there a way to sort on the first pipe-delimited field properly?
This question came up in my attempt to answer another SO question, Join Statement omitting entries .