Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Sep 2001 14:07:38 +0300
From:      Ruslan Ermilov <ru@FreeBSD.ORG>
To:        Wayne Cuddy <wcuddy@crb-web.com>
Cc:        freebsd-questions@FreeBSD.ORG
Subject:   Re: chmod
Message-ID:  <20010914140738.D12915@sunbay.com>
In-Reply-To: <20010913145547.G2701@crb-web.com>; from wcuddy@crb-web.com on Thu, Sep 13, 2001 at 02:55:47PM -0500
References:  <sba0c382.037@mbakercorp.com> <20010913145547.G2701@crb-web.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Sep 13, 2001 at 02:55:47PM -0500, Wayne Cuddy wrote:
> I use this:
> 
> find . -type d -exec chmod 777 {} \;
> 
> This executes chmod for each directory 'find' encounters and expands the {} to
> the directory name.  'find' is very useful..
> 
find . -type d | xargs chmod 777
is much faster.


Cheers,
-- 
Ruslan Ermilov		Oracle Developer/DBA,
ru@sunbay.com		Sunbay Software AG,
ru@FreeBSD.org		FreeBSD committer,
+380.652.512.251	Simferopol, Ukraine

http://www.FreeBSD.org	The Power To Serve
http://www.oracle.com	Enabling The Information Age

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010914140738.D12915>