Created
July 18, 2015 02:49
-
-
Save rockdrigo/f72a957dc92cd5eeb18f to your computer and use it in GitHub Desktop.
permisos wordpress
This file contains hidden or 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
#!/bin/bash | |
echo "comenzamos con la asignacion de permisos, no tardamos" | |
echo "asignando permisos 664 a archivos" | |
find . -type f -exec chmod 664 {} \; | |
echo "asignando permisos 775 a carpetas" | |
find . -type d -exec chmod 775 {} \; | |
echo "be happy litle pinguin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment