This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

1.5.12: find with -iregex is case-sensitive


Even with the -iregex option, the find command performs case-sensitive
matching. 

Test procedure:

$ mkdir test
$ touch test/file-a
$ touch test/File-b
$ find test | grep -i ".*file.*"
test/file-a
test/File-b

$ find test -iregex ".*file.*"
test/file-a

$ find test -iregex ".*File.*"
test/File-b

I'm using Cygwin 1.5.12-1 under Windows XP Professional Ver 5.1 Build 2600
Service Pack 1, findutils 20041227-1.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]