Last active
June 29, 2017 10:20
-
-
Save rutgerhensel/943040fa57cd093c01c5fd8affab2d3b to your computer and use it in GitHub Desktop.
Set correct directory and file permissions recursively
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
| find . -type f -exec chmod 644 {} \; | |
| find . -type d -exec chmod 755 {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment