Skip to content

Instantly share code, notes, and snippets.

@luisabarca
Created May 10, 2011 05:58
Show Gist options
  • Save luisabarca/963975 to your computer and use it in GitHub Desktop.
Save luisabarca/963975 to your computer and use it in GitHub Desktop.
Cambiar permisos a varios archivos o carpetas / Chmod to any file or folder
# Para Archivos
find . -type f -print0 | xargs -0 chmod 644
# Para carpetas
find . -type d -print0 | xargs -0 chmod 755
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment