On Oct 5, 8:02 pm, Robert Citek <[email protected]> wrote:
>
> You're running into a locale issue.
>
> $ sort try_sort1.txt
> a       0-1     b       c
> a       0:1     b       c
> a       0-1     d       e
>
> $ LC_COLLATE=C sort try_sort1.txt
> a       0-1     b       c
> a       0-1     d       e
> a       0:1     b       c
>
> $ LC_ALL=C sort try_sort1.txt
> a       0-1     b       c
> a       0-1     d       e
> a       0:1     b       c
>
> For details, 'man sort'[1]  and see the warning about locale.
>
> [1]http://linux.die.net/man/1/sort
>
> Regards,
> - Robert

Thanks Robert. This is exactly what I was looking for. Your
suggestions worked for me.

O.O.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Linux Users Group.
To post a message, send email to [email protected]
To unsubscribe, send email to [email protected]
For more options, visit our group at 
http://groups.google.com/group/linuxusersgroup
-~----------~----~----~----~------~----~------~--~---

Reply via email to