From owner-freebsd-questions Sat Oct 12 12:19:43 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id MAA22018 for questions-outgoing; Sat, 12 Oct 1996 12:19:43 -0700 (PDT) Received: from glacier.cold.org (glacier.cold.org [206.81.134.54]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id MAA22008 for ; Sat, 12 Oct 1996 12:19:37 -0700 (PDT) Received: from glacier.cold.org (localhost [127.0.0.1]) by glacier.cold.org (8.7.5/8.7.3) with ESMTP id NAA17119; Sat, 12 Oct 1996 13:18:15 -0600 (MDT) Message-Id: <199610121918.NAA17119@glacier.cold.org> X-Mailer: exmh version 1.6.9 8/22/96 To: hmmm cc: freebsd-questions Subject: Re: find In-reply-to: Your message of "Sat, 12 Oct 1996 17:28:40 -0000." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 12 Oct 1996 13:18:13 -0600 From: Brandon Gillespie Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > cd usr/local/man/man1 > find / -name ispell* > cd usr/local/man > find / -name ispell* I suspect wildcard expansion is getting in your way. You should really put quotes around ispell*, ala: find / -name "ispell*" To see an example, try: cd /usr/local/man/man1 echo "expand: " ispell* cd /usr/local/man echo "expand: " ispell* -Brandon Gillespie