Setting AFS permissions recursively

less than 1 minute read

In order to recursively set AFS ACL permissions for a directory, you need to manually use find -exec as follows: find <dir> -type d -exec fs sa {} <user> <permissions> \;. Here is the reference for this.

Leave a Comment