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: Elementary Problem with find


Make your own find:
bash$ cd .../gnuwin32/b18/H-i386-cygwin32/bin
bash$ cp find.exe gnufind.exe
bash$ cd /...
bash$ gnufind . -name *.c -print
Find all instances of the word "include" in .h files:
bash$ gnufind . -name *.h -exec grep include {} \; -print
This will work!
Tage

-
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]