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)