Skip to content

Instantly share code, notes, and snippets.

@TunedMystic
Created June 3, 2019 03:47
Show Gist options
  • Save TunedMystic/2603cc8249cd3370f04db478ebae77fb to your computer and use it in GitHub Desktop.
Save TunedMystic/2603cc8249cd3370f04db478ebae77fb to your computer and use it in GitHub Desktop.
Change File Permissions
alias changefileperms='find . -type d -perm 777 -exec chmod 755 {} \; && find . -type f -perm 777 -exec chmod 644 {} \;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment