Re: strange
[email protected] (Bob Proulx)
| Newsgroups | gmane.comp.gnu.textutils.bugs |
|---|---|
| Message-ID | <[email protected]> |
Paul Miller <[email protected]> [2002-08-22 11:15:50 -0400]: > I hope this is a dumb question... is there an evironment > var that sets '-d' for me or something? Yes. There is an environment variable call LANG which given your behavior is almost certainly set to en_US. And I bet I could guess the vendor. Use the 'locale' command to dump your current locale settings. You have found a common ailment. As you can see the spaces and punctuation are ignored and case is ignored when LANG is set to en_US. Your vendor set LANG for you to en_US because they think you like it that way. If you disagree then you might consider filing a bug report with them. GNU sort does not set this for you. Here is a standard reply. Bob Please check out the FAQ section on sort. http://www.gnu.org/software/fileutils/doc/faq/#Sort%20does%20not%20sorting%20in%20normal%20order! This is due to the fact that you or your vendor have set environment variables that direct the program to use locale specific sorting tables which do not sort as you expect. You or your vendor have probably set environment variables like LANG, LC_ALL, or LANG to en_US. Use the 'locale' program to display your current settings. Unset them, and then set LC_ALL to POSIX. # If you use bash or some other Bourne-based shell, export LC_ALL=POSIX # If you use a C-shell, setenv LC_ALL POSIX and it will then work the way you expect because it will use a different set of tables. See the standards documentation for more information on the locale variables with regards to sort. http://www.unix-systems.org/single_unix_specification_v2/xcu/sort.html