Linux change tous les dossiers en 755 et les fichiers à 644
find . -type d -print0 | xargs -0 chmod 755
find . -type f -print0 | xargs -0 chmod 644
mvmrik
find . -type d -print0 | xargs -0 chmod 755
find . -type f -print0 | xargs -0 chmod 644