INFORMATICS

The Best

Zmiana uprawnień tylko do folderu

Star InactiveStar InactiveStar InactiveStar InactiveStar Inactive
 

Aby zmienić uprawnienia w linuxie tylko do folderów lub tylko do plików możemy użyć nasstępującej komendy.

(fedora)
find -type d -print0 |xargs -0 chmod 755
find -type f -print0 |xargs -0 chmod 644

 

Inne komendy

find . -type d -exec chmod 755 {} \;

find . -type f -exec chmod 644 {} \;

find . -type f -name '*.htm*' -exec chmod 644 {} \;

find /usr/lib/whatever -type f -name '*.ext' -exec chmod 444 {} \;


find . -type f -exec chmod 644 {} \;

find folder/ -type d -exec chmod 755 {} \;

gdzie folder/ to ścieżka do folderu który ma być zmieniony

Search