Hide Forgot
Description of problem: Bash globing broken try "echo [a-z]*" it should return only lower case (first letter) files it returns uppercase too! Version-Release number of selected component (if applicable): How reproducible: very Steps to Reproduce: 1.echo [a-z]* 2. 3. Actual results: uppercase files are listed Expected results: only lower case first letter files should be listed. Additional info:
(In reply to comment #0) > Description of problem: > > Bash globing broken > try "echo [a-z]*" > it should return only lower case (first letter) files > it returns uppercase too! No. It depends on your LC_COLLATE settings. See bash FAQ; http://www.faqs.org/faqs/unix-faq/shell/bash/ Section E9 > > Version-Release number of selected component (if applicable): > > > How reproducible: > very > > Steps to Reproduce: > 1.echo [a-z]* > 2. > 3. > > Actual results: > > uppercase files are listed > > Expected results: > > only lower case first letter files should be listed. > > Additional info: