Last active
April 2, 2020 13:54
-
-
Save elcascarudo-dev/d24c34c383765662bb52eb88e80760e8 to your computer and use it in GitHub Desktop.
Cambiar permisos recursivamente a diectorios y ficheros
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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