How to change all permissions on files and directories? That’s easy, but how to include all directories and files in underlying directories?
It can be done like this:
find . -type d -exec chmod 0755 {} \;
find . -type f -exec chmod 0644 {} \;
How to change all permissions on files and directories? That’s easy, but how to include all directories and files in underlying directories?
It can be done like this:
find . -type d -exec chmod 0755 {} \;
find . -type f -exec chmod 0644 {} \;
Präsentiert von WordPress & Theme erstellt von Anders Norén