From: ueda@prs.cs.fujitsu.co.jp (=?iso-2022-jp?B?GyRCPmVFRCEhN3JHNxsoSg==?=)
Subject: Re: CONTINUING Elementary Problems with Find
22 Oct 1997 20:04:10 -0700
Message-ID: <344EA128.6FDF.cygnus.gnu-win32@prs.cs.fujitsu.co.jp>
References: <00084699.3272@fhssmtp.redstone.army.mil>
Reply-To: ueda@prs.cs.fujitsu.co.jp
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit
To: GBradfor <GBradfor@fhssmtp.redstone.army.mil>
Cc: gnu-win32@cygnus.com

Hi, 

>      Taking my initial command line:
>         find . -name *.c -print
> 
>      gives the following error:
>         find:  Paths must precede expression
>         Usage:  find [path...] [expression]

The shell have expanded "*.c" into several filenames before execute
find.
May be, do you want to do as bellow?

	find . -print | grep '\.c'
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
