Created
October 9, 2015 10:29
-
-
Save bsa7/b52dfb7147c4455081d4 to your computer and use it in GitHub Desktop.
recursive set proper mode for files and folders
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
sudo find . -type f -exec chmod 644 {} \; | |
sudo find -type d -exec chmod 755 {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment