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)
Wie lange arbeite ich jetzt schon mit Linux bis mir das System dahinter bewusst wird?
r=4, w=2, x=1
777 = rwx rwx rwx = 4+2+1 4+2+1 4+2+1
750 = rwx r-x — = 4+2+1 4+1 0
644 = rw- –r –r = 4+2 4 4
Man man man… ;-)
[Update] – Danke Kevin fuer die Korrektur, habs im Post gerade aktualisiert