i have this script to add inherit permissions in all directory's,
asd=$(find -type d); for a in $asd; do setfacl -d -m "u:pythoncrons:rwx" $a; done
my question is, i can set inherit permissions recursive without bash script?
like recursive set permissions command:
setfacl -R -m "u:pythoncrons:rwx" directory
If someone knows any software that handles VCL that may be useful for this, it would also be fine.
UPDATE #1
i actually using this because is more easy:
find -type d -exec setfacl -d -m "u:pythoncrons:rwx" {} \;
Thanks,