Skip to content

Instantly share code, notes, and snippets.

@rutgerhensel
Last active June 29, 2017 10:20
Show Gist options
  • Select an option

  • Save rutgerhensel/943040fa57cd093c01c5fd8affab2d3b to your computer and use it in GitHub Desktop.

Select an option

Save rutgerhensel/943040fa57cd093c01c5fd8affab2d3b to your computer and use it in GitHub Desktop.
Set correct directory and file permissions recursively
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment