>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,..
find <dir> -type d -print -exec fs sa -dir {} -acl <acl-list> \;
It's more efficient to say:
fs sa -dir `find <dirs> -type d` -acl <acls>
I would suggest that Transarc add a -recursive option to the "fs sa"
and the "fs ca" commands.
...tai
