Configuration Information [Automatically generated, do not change]: Machine: x86_64 OS: linux-gnu Compiler: gcc Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64' -DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-pc-linux-gnu' -DCONF_VENDOR='pc' -DLOCALEDIR='/usr/share/locale' -DPACKAGE='bash' -DSHELL -DHAVE_CONFIG_H -I. -I../bash -I../bash/include -I../bash/lib -g -O2 -Wall uname output: Linux ino 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Machine Type: x86_64-pc-linux-gnu
Bash Version: 4.2 Patch Level: 8 Release Status: release Description: When running "echo [A-Z]*" , it shows all files/dirs of current directory, not only those starting with capital letters. I tried different locales such as: POSIX, C, en_US, pt_BR Repeat-By: $ mkdir a && cd a $ touch a b c; mkdir D E F $ echo [A-Z]* b c D E F $ echo [a-z]* a b c D E F Fix: No Fix yet, looking on the source code.