Change directory permissions recursively (find)
find $DIR_PATH -type d -exec chmod 755 {} \;
Recursively changes the permissions of all directories within a specified path to 755.
find $DIR_PATH -type d -exec chmod 755 {} \;
Recursively changes the permissions of all directories within a specified path to 755.