Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <004401c2bf4f$3e19e040$12760251@benson.hones.org.uk> From: "Cliff Hones" To: "Paul T. Karch" Cc: References: <003501c2bf48$31197e20$a48b28d0 AT military> Subject: Re: find Exhibits Strange Behavior ? Date: Sun, 19 Jan 2003 00:10:57 -0000 Organization: Aonix Europe Ltd. MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Paul T. Karch" pkarch AT stargate DOT net writes: > After I startup with cygwin.bat I am put > into the /home/user directory. > If I try to do any of the commands: > find . -iname *.c > find -iname *.c > find / -iname *.c > > I get the following: > > find: paths must precede expression > Usage: find [path...] [expression] >... > This is not really a problem, I guess, but it is curious. > Also I may not be interpreting the meaning of the find command > properly. Any comments ? I think it is the operation of the shell which you are not understanding properly. If you use *.c on the command line without quoting it, the shell expands it before passing it to find. Try again using e.g. find . -iname '*.c' -- Cliff -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/