From owner-freebsd-questions@FreeBSD.ORG Thu Jun 26 20:27:39 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 956A137B401 for ; Thu, 26 Jun 2003 20:27:39 -0700 (PDT) Received: from [204.213.64.2] (firewall.tiadon.com [204.213.64.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14CCE43FD7 for ; Thu, 26 Jun 2003 20:27:38 -0700 (PDT) (envelope-from kdk@daleco.biz) Received: from rmc.tiadon.com by [204.213.64.2] ESMTP; Thu, 26 Jun 2003 22:27:38 -0500 Received: from applications.tiadon.com (mail.tiadon.com [172.16.18.172]) by bcec01.tiadon.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id M49FZS8Y; Thu, 26 Jun 2003 22:27:34 -0500 Received: from firewall.tiadon.com ([204.213.65.216]) by applications.tiadon.com with Microsoft SMTPSVC(5.5.1877.197.19); Thu, 26 Jun 2003 22:27:28 -0500 Received: from [204.213.65.216] by firewall.tiadon.com via smtpd (for mail.tiadon.com [172.16.18.172]) with ESMTP; Thu, 26 Jun 2003 22:27:25 -0500 Message-ID: <006501c33c5c$061fc8f0$3f41d5cc@nitanjared> From: "Kevin Kinsey, DaleCo, S.P." To: "Joshua Oreman" References: <001901c33c50$563d8b30$3f41d5cc@nitanjared> <20030627021729.GA32791@webserver.get-linux.org> Date: Thu, 26 Jun 2003 22:27:19 -0500 Organization: DaleCo, S.P.---"the solutions people" MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 cc: questions@freebsd.org Subject: Re: Obvious 'Doh!'? find vs. diff.... X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Kevin Kinsey, DaleCo, S.P." List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jun 2003 03:27:39 -0000 From: "Joshua Oreman" To: "Kevin Kinsey, DaleCo, S.P." Cc: Sent: Thursday, June 26, 2003 9:17 PM Subject: Re: Obvious 'Doh!'? find vs. diff.... > Easy on the send button! Hmm, unique situation with my SMTP, didn't *say* it had left... AAMOF, it was still in the 'inbox'.... really do need to rid myself of this borken M$ mailer.... > > On Thu, Jun 26, 2003 at 09:03:41PM -0500 or thereabouts, Kevin Kinsey, DaleCo, S.P. wrote: > > [/usr/src] [19:57] > > #find / -name "GENERIC" -print > > /usr/src/sys/alpha/conf/GENERIC > > /usr/src/sys/i386/conf/GENERIC > > /usr/src/sys/i386/GENERIC > > /usr/src/sys/pc98/conf/GENERIC > > /usr/obj/usr/src/sys/GENERIC > > > > [/usr/src] [19:57] > > #diff /usr/obj/usr/src/sys/GENERIC /usr/src/sys/i386/GENERIC > > diff: /usr/obj/usr/src/sys/GENERIC/GENERIC: No such file or directory > > /usr/obj/usr/src/sys/GENERIC is probably a directory. > The `find' command you want is: > #find /usr/src /usr/obj -name GENERIC -type f -print > > `-type f' restricts it to files. > > -- Josh /me slaps forehead! Thx, KDK