delorie.com/archives/browse.cgi | search |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
From: | ericblake AT comcast DOT net (Eric Blake) |
To: | Matthew Movafaghi <mattmova AT hotmail DOT com>, cygwin AT cygwin DOT com |
Subject: | Re: Simple find command does not work for * .html |
Date: | Wed, 07 Sep 2005 19:59:58 +0000 |
Message-Id: | <090720051959.18224.431F46BE0000B4640000473022007507840A050E040D0C079D0A@comcast.net> |
X-Authenticated-Sender: | ZXJpY2JsYWtlQGNvbWNhc3QubmV0 |
> > For some reason the following find command will not complete for *.html. > > It says: find: paths must precede expression.... User error. Remember that the shell does filename globbing before find ever sees its input (unless you have done set -f in a POSIX shell). If the current directory contains .html files, then you really are causing a syntax error. > `find d:\ -type f -perm -u+w -name *.properties` Try 'echo find d:\ -type f -perm -u+w -name *.html' to see what you were really doing, then try 'find d:\ -type f -perm -u+w -name \*.html' to fix it. And while you are at it, since this is cygwin, try 'find /cygdrive/d -type f -perm -u+w -name \*.html' to get rid of that pesky backslash (are you in a cmd.com shell, explaining why you didn't quote it properly?) and behave more unixy. -- Eric Blake volunteer cygwin findutils maintainer -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |