Skip to content

Instantly share code, notes, and snippets.

@bohack
Created April 24, 2019 19:28
Show Gist options
  • Save bohack/c1fd3d375e9e1747c0dcf6a778b55cbe to your computer and use it in GitHub Desktop.
Save bohack/c1fd3d375e9e1747c0dcf6a778b55cbe to your computer and use it in GitHub Desktop.
Folder and File Permissions in Linux
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