Created
April 24, 2019 19:28
-
-
Save bohack/c1fd3d375e9e1747c0dcf6a778b55cbe to your computer and use it in GitHub Desktop.
Folder and File Permissions in Linux
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
find . \( -type d -exec chmod 775 {} \; \) -o \( -type f -exec chmod 664 {} \; \) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment