iddwb <[EMAIL PROTECTED]> writes:
:
: I would like to set an acl on all directories below the current dir.  I've
: tried
: 
: fs setacl -dir */* -acl userid none
: 
: and it doesn't work.

That's because your glob contains things that aren't directories,
something fs doesn't like.  If you globbed only dirs, it'd work.  The
expression you're looking for (if executed in a rational shell) is
usually a variant on:

  fs sa -dir `find <dir> -type d -print` -acl userid none

Hope this helps.


William

Reply via email to