Skip to content

Instantly share code, notes, and snippets.

@fabdelgado
Forked from pwenzel/fix_permissions.sh
Created June 19, 2019 02:53
Show Gist options
  • Save fabdelgado/08625617e3a206dd28165f6643bbae78 to your computer and use it in GitHub Desktop.
Save fabdelgado/08625617e3a206dd28165f6643bbae78 to your computer and use it in GitHub Desktop.
change permissions for all files and folders with xargs
# change permissions for all files, skipping dirs
find . -type f | xargs chmod 664
# change permissions for all dirs, skipping files
find . -type d | xargs chmod 775
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment