Last active
December 24, 2018 16:37
-
-
Save adamrunner/3293a0b5a9c163ccbe05e5115a64044e to your computer and use it in GitHub Desktop.
use these commands to fix file system permissions separately for files and directories
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 d -exec chmod 0700 '{}' \; | |
find . -type f -exec chmod 0600 '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment