This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# only apply in directories recursively | |
find /<PATH_TO_YOUR_DIR> -type d -exec chmod 775 {} \; | |
# only apply in files recursively | |
find /<PATH_TO_YOUR_DIR> -type f -exec chmod 664 {} \; |
OlderNewer