Skip to content

Instantly share code, notes, and snippets.

@rojaster
Created January 9, 2016 17:26
Show Gist options
  • Save rojaster/526609f10d4a1389b924 to your computer and use it in GitHub Desktop.
Save rojaster/526609f10d4a1389b924 to your computer and use it in GitHub Desktop.
Change rights on linux system if you failed ones
find . -type d -exec chmod 755 {} +; // for directories recursively
find . -type f -exec chmod 644 {} +; // for files recursively
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment