From owner-freebsd-questions@FreeBSD.ORG Thu Mar 1 11:11:55 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9401D16A402 for ; Thu, 1 Mar 2007 11:11:55 +0000 (UTC) (envelope-from jhary@unsane.co.uk) Received: from unsane.co.uk (www.unsane.co.uk [85.233.185.162]) by mx1.freebsd.org (Postfix) with ESMTP id 1E90613C49D for ; Thu, 1 Mar 2007 11:11:54 +0000 (UTC) (envelope-from jhary@unsane.co.uk) Received: from [10.0.0.178] ([10.0.0.178]) (authenticated bits=0) by unsane.co.uk (8.14.0/8.13.8) with ESMTP id l21BBoXN001991 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 1 Mar 2007 11:11:52 GMT (envelope-from jhary@unsane.co.uk) Message-ID: <45E6B4FC.5040601@unsane.co.uk> Date: Thu, 01 Mar 2007 11:11:56 +0000 From: Vince User-Agent: Thunderbird 1.5.0.7 (X11/20061027) MIME-Version: 1.0 To: Josh Tolbert References: <20070228231635.GB73748@just.puresimplicity.net> <45E6113A.2060500@unsane.co.uk> <20070301000112.GA74875@just.puresimplicity.net> In-Reply-To: <20070301000112.GA74875@just.puresimplicity.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Paul Schmehl , FreeBSD Questions Subject: Re: find returns unusable result X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2007 11:11:55 -0000 Josh Tolbert wrote: > On Wed, Feb 28, 2007 at 11:33:14PM +0000, Vince wrote: > >> or just >> find /path/to/dirs -type d -exec chmod 755 {} \; >> should do it. >> > > Fair enough; I generally prefer the xargs method in case I have to do any more > processing later. Also, xargs' batching may potentially save you a bit of > time, but I doubt that'd be noticable. > > True, for anything more complex xargs is invaluable. Vince > Thanks, > > Josh >