-
chmod 755 rekursiv NUR auf Verzeichnisse
find . -type d -exec chmod 755 {} \; entsprechend ein 644 auf nur die Dateien ist: find . -type f -exec chmod 644 {} \; (via)
find . -type d -exec chmod 755 {} \; entsprechend ein 644 auf nur die Dateien ist: find . -type f -exec chmod 644 {} \; (via)