Skip to content

Instantly share code, notes, and snippets.

@elcascarudo-dev
Last active April 2, 2020 13:54
Show Gist options
  • Save elcascarudo-dev/d24c34c383765662bb52eb88e80760e8 to your computer and use it in GitHub Desktop.
Save elcascarudo-dev/d24c34c383765662bb52eb88e80760e8 to your computer and use it in GitHub Desktop.
Cambiar permisos recursivamente a diectorios y ficheros
## Para directorios
find /ruta/directorio/destino -type d -exec chmod 755 {} \;
## Para ficheros
find /ruta/directorio/destino -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment