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
- helpfull script to improve fs setacl iddwb
- Re: helpfull script to improve fs setacl William Setzer
- Re: helpfull script to improve fs setacl Douglas E. Engert
- Re: helpfull script to improve fs setacl Michael C. Burns
- Re: helpfull script to improve fs setacl cyd
