Skip to content

Instantly share code, notes, and snippets.

@amirkhiz
Created January 6, 2019 15:05
Show Gist options
  • Save amirkhiz/6f690cbe52585d45b5c56da8b1dcde02 to your computer and use it in GitHub Desktop.
Save amirkhiz/6f690cbe52585d45b5c56da8b1dcde02 to your computer and use it in GitHub Desktop.
Set Files & Directories permission command
find * -type d -print0 | xargs -0 chmod 0755 # for directories
find . -type f -print0 | xargs -0 chmod 0644 # for files
stat -c "%a %n" * # Check permissions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment