tags 6377 + notabug

On 08/06/10 14:48, Iosif Fettich wrote:
>         (I'm not sure if this a bash or a coreutils issue).
> 
>         ls [A-Z]*
> 
>         doesn't work as expected/documented.

The logic is in bash but it's not an issue.
It's using the collating sequence of your locale

$ touch a A b B z Z
$ echo [A-Z]*
A b B z Z
$ export LANG=C
$ echo [A-Z]*
A B Z




Reply via email to