Last active
July 22, 2022 15:02
-
-
Save davidromani/cfb6a5bde3217975eac1bbc665b778ef to your computer and use it in GitHub Desktop.
This file contains 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 {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment