Date: Thu, 11 Oct 2001 09:49:00 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Tim Van Holder cc: djgpp-workers AT delorie DOT com Subject: Re: First round of XP tests In-Reply-To: <000301c151ab$26da9040$6ff8e0d5@pandora.be> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 10 Oct 2001, Tim Van Holder wrote: To: "Tim Van Holder" CC: djgpp-workers AT delorie DOT com In-reply-to: <000301c151ab$26da9040$6ff8e0d5 AT pandora DOT be> (tim DOT van DOT holder AT pandora DOT be) Subject: Re: First round of XP tests Reply-to: Eli Zaretskii References: <000301c151ab$26da9040$6ff8e0d5 AT pandora DOT be> --text follows this line-- > From: "Tim Van Holder" > Date: Wed, 10 Oct 2001 18:46:43 +0200 > > find '*.cvs' returns nothing, find '*.CVS' returns the list of > '_.CVS' files in the tree. > Since the filesystem is case insensitive, name comparisons done by > find should be case insensitive as well. Forgot to mention yesterday: use -iname or -ipath if you want case-insensitive comparison of file names. -name and -path are case-sensitive, for compatibility with Unix.