Skip to content

Instantly share code, notes, and snippets.

@nasirkhan
Created August 23, 2016 10:49
Show Gist options
  • Select an option

  • Save nasirkhan/68189f1b0ee20a3f49d575272ab50656 to your computer and use it in GitHub Desktop.

Select an option

Save nasirkhan/68189f1b0ee20a3f49d575272ab50656 to your computer and use it in GitHub Desktop.
Fix the file and folder/directory permission on Linux
# For directories only do this.
find . -type d -exec chmod 755 {} \;
# For files only do this.
find . -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment