From owner-freebsd-questions@FreeBSD.ORG Tue Dec 20 11:08:33 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 4E4A816A41F for ; Tue, 20 Dec 2005 11:08:33 +0000 (GMT) (envelope-from igorr@speechpro.com) Received: from speechpro.com (speech-tech-2.ip.PeterStar.net [81.3.190.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37C8443D4C for ; Tue, 20 Dec 2005 11:08:31 +0000 (GMT) (envelope-from igorr@speechpro.com) Received: from sysadm.stc ([192.168.2.26]) by s1.stc with esmtp (Exim 4.53 (FreeBSD)) id 1EofM6-000969-6A for freebsd-questions@freebsd.org; Tue, 20 Dec 2005 14:08:30 +0300 Received: from localhost.stc ([127.0.0.1] helo=sysadm.stc) by sysadm.stc with esmtp (Exim 4.54 (FreeBSD)) id 1EofLf-0005NB-0e for freebsd-questions@freebsd.org; Tue, 20 Dec 2005 14:08:03 +0300 Received: (from igorr@localhost) by sysadm.stc (8.13.4/8.13.3/Submit) id jBKB82mF020656 for freebsd-questions@freebsd.org; Tue, 20 Dec 2005 14:08:02 +0300 (MSK) (envelope-from igorr) Date: Tue, 20 Dec 2005 14:08:02 +0300 From: Igor Robul To: freebsd-questions@freebsd.org Message-ID: <20051220110802.GE10718@sysadm.stc> References: <43A429D1.2090309@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <43A429D1.2090309@gmail.com> User-Agent: Mutt/1.5.11 X-Archived: Yes Subject: Re: Recursive ACLs commands 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: Tue, 20 Dec 2005 11:08:33 -0000 On Sat, Dec 17, 2005 at 10:08:01AM -0500, bazzoola wrote: > Greetings, > > I was just wondering if I can set or lists acls recursively on specific > directories ? > > I couldn't find the usual '-R' option for setfacl > Is there another way to do this? find . -type f -exec setfacl -m xxx {} \; or find . -type d -exec setfacl -d -m u::,g::,o::,g:rrr:rwx {} \; I hope you have got idea