From: ueda AT prs DOT cs DOT fujitsu DOT co DOT 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 DOT 3272 AT fhssmtp DOT redstone DOT army DOT mil> Reply-To: ueda AT prs DOT cs DOT fujitsu DOT co DOT jp Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit To: GBradfor Cc: gnu-win32 AT cygnus DOT 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 AT cygnus DOT com" with one line of text: "help".