# update permissions
find /local/apps/ -type d -exec chmod o+rx {} ";"
find /local/apps/ -type f -exec chmod o+r {} ";"
Result of FIND placed in {}
-type f=file d=directory
Terminate cmd ";"
# update permissions
find /local/apps/ -type d -exec chmod o+rx {} ";"
find /local/apps/ -type f -exec chmod o+r {} ";"
Result of FIND placed in {}
-type f=file d=directory
Terminate cmd ";"