[EMAIL PROTECTED] said:
>  >I have a couple of hundred directories that I would like to setacl.
>  >Is there a recursive way to change a group of directories, subdirectories,..
> 
>  I use the following command (someone else was kind enough to suggest this
>  in one of our forums):
> 
>  find <dir> -type d -print -exec fs sa -dir {} -acl <acl-list> \;

  Yeah, this will work.  But, I like to only have to run fs once.  I use:

  fs seta -dir <path>/**/*(/) -acl <acl>

  but, of course, this only works because I use zsh as a shell.  You might
get about the same behavior with:

  fs seta -dir `find <path> -type d -print` -acl <acl>

  tho...

> Lisa Chavez
> AIX Support, IBM Tucson

                              - Chris
--
Chris P. Ross                         University Of Maryland
[EMAIL PROTECTED]                     Engineering Computer Facility
Work#: (301)/405-3689                 Project GLUE

Reply via email to