[vox-tech] Error Message From "find"

Samuel Merritt vox-tech@lists.lugod.org
Thu, 16 Jan 2003 12:49:25 -0800


--Rgf3q3z9SdmXC6oT
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Thu, Jan 16, 2003 at 12:33:08PM -0800, Jim Angstadt wrote:
> Hi All,
>=20
> Sometimes "find" will work; other times not.
> Below is a script where "find" runs good, I cd to a
> subordinate dir, run the same find command, and get an
> error message.  This is repeatable on my Red Hat 7.2
> system.
>=20
> If I were using relative addressing, then sure, it
> should be a problem.  But I'm not, am I?
>=20
> The output is just as script produces, except I have
> added several blank lines for readability.
>=20
> Thanks,
> Jim
>=20
> --------------- script output
>=20
> Script started on Thu Jan 16 12:07:52 2003
>=20
> =1B]0;ja@localhost:~[ja@localhost ja]$ find
> ~/public_html/web/pages/fam/ -name *.php -print | wc
> -l
>     134

Here, there aren't any files ending in .php, so "*.php* gets passed to
find verbatim.=20

> =1B]0;ja@localhost:~[ja@localhost ja]$ cd
> public_html/web/pages/fam/
>=20
> =1B]0;ja@localhost:~/public_html/web/pages/fam[ja@localhost
> fam]$ cd public_html/web/pages/fam/[ja@localhost fam]$
> find ~/public_html/web/pages/fam/ -name *.php -print |
> wc -l
> find: paths must precede expression
> Usage: find [path...] [expression]
>       0

Here, your shell is expanding *.php to a list of all .php files in the
current directory, so the command is actually

find ~/public_html/web/pages/fam -name foo.php bar.php bert.php ...
last.php -print

You need to enclose *.php in double quotes so your shell will leave it
alone.=20

>=20
>=20
> __________________________________________________
> Do you Yahoo!?
> Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
> http://mailplus.yahoo.com
> _______________________________________________
> vox-tech mailing list
> vox-tech@lists.lugod.org
> http://lists.lugod.org/mailman/listinfo/vox-tech

--=20
Samuel Merritt
OpenPGP key is at http://meat.andcheese.org/~spam/spam_at_andcheese_dot_org=
.asc
Information about PGP can be found at http://www.mindspring.com/~aegreene/p=
gp/

--Rgf3q3z9SdmXC6oT
Content-Type: application/pgp-signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)

iD8DBQE+JxrVW3tuPJ1t7wURAosyAJ9SnMCnORdToIPaMooaAfGv+0Lz3gCfdH8p
7mhx5ppSNpw6RTZdOneM580=
=JSgV
-----END PGP SIGNATURE-----

--Rgf3q3z9SdmXC6oT--