Bill

> GNU ls by default lists file names in alphabetic order
> regardless of case.
> 
> Any possibility of adding an option that lists uppercase
> names first?

Thanks for the report.  It matches a common pattern.  This is not due
to a bug, but to the fact that you have set environment variables that
direct the program to use locale specific sorting tables.  You or your
vendor have probably set environment variables like LANG, LC_ALL, or
LANG to en_US.  There appears to be a problem with that table which is
not part of the GNU program but part of your vendor's system release.

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.

See the standards documentation for more information on LC_*
variables.

  http://www.unix-systems.org/single_unix_specification_v2/xcu/ls.html

Bob

_______________________________________________
Bug-fileutils mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-fileutils

Reply via email to