Skip to content

Instantly share code, notes, and snippets.

@ifnull
Created August 12, 2013 04:35
Show Gist options
  • Save ifnull/6208270 to your computer and use it in GitHub Desktop.
Save ifnull/6208270 to your computer and use it in GitHub Desktop.
Fix file and folder permissions.
find ./ -type d -exec chmod 755 {} \;
find ./ -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment