Skip to content

Instantly share code, notes, and snippets.

@maulayyacyber
Created June 3, 2017 12:46
Show Gist options
  • Save maulayyacyber/269330ba3c681ea8ce1db261a528aba2 to your computer and use it in GitHub Desktop.
Save maulayyacyber/269330ba3c681ea8ce1db261a528aba2 to your computer and use it in GitHub Desktop.
find . -type d | while read folder ; do chmod 755 "$folder" ; done
find . -type f | while read file ; do chmod 644 "$file" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment