This is the mail archive of the cygwin@sourceware.cygnus.com 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]

Re: `find' command broken.


John Cooper wrote:
> 
> Since cmd.exe doesn't do any globbing, the following should presumably work:
> 
>     H:\ef>find . -name *.c -print
>     find: paths must precede expression
>     Usage: find [path...] [expression]
>     H:\ef>
> 
> I'm actually using the early zsh release, and get the same result when I run
> `find . -name *.c -print' .
> 
> Oddly, this does work under bash.  Can anyone explain this?

It shouldn't work under either, you need to escape the wildcards, try:
	find . -name '*.c' -print

I tried it under tcsh and it failed also.  It said:
	FIND: Parameter format not correct

Presumably I got a different find in my path, because when I fully
qualified 
the path it worked ok, ie:

	C:/gnuwin32/b18/H-i386-cygwin32/bin/find . -name '*.c' -print

I'll have to go do a search and see which find's are on my path cause
which isn't working on tcsh.

-- 
  ,-/-  __      _  _         $Bill Luebkert
 (_/   /  )    // //       DBE Collectibles
  / ) /--<  o // //      http://www.wgn.net/~dbe/
-/-' /___/_<_</_</_    Email: dbe@wgn.net
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


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