From: mh@mike.franken.de (Michael Hirmke)
Subject: Re: Elementary Problem with find
25 Oct 1997 13:10:49 -0700
Message-ID: <6gZoMSHKpfB.cygnus.gnu-win32@mike.franken.de>
References: <344F2A66.57BE@stockholm.mail.telia.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: gnu-win32@cygnus.com

Hi Tage,

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

It might work, but it would be better to get used to

     (gnu)find . -name "*.c" -print
     (gnu)find . -name "*.h" -exec grep include {} \; -print
                       ^   ^

>Tage

Bye.
Michael.
--
Michael Hirmke           | Telefon +49 (911) 557999
Georg-Strobel-Strasse 81 | FAX     +49 (911) 557664
90489 Nuernberg          | E-Mail  mailto:mh@mike.franken.de
                         | WWW     http://minimike.franken.de/
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
