Skip to content

Instantly share code, notes, and snippets.

@twittobal
Last active June 13, 2019 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twittobal/d1058ea680a1d43ad2ec3c10f30dc9e9 to your computer and use it in GitHub Desktop.
Save twittobal/d1058ea680a1d43ad2ec3c10f30dc9e9 to your computer and use it in GitHub Desktop.
Permissions on files and directories Linux
#Folders
find . -type d -exec chmod -R 0755 {} \;
#Files
find . -type f -exec chmod -R 0644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment