Linux Permissions

Linux Permissions

Change all directories recursively to 755:

$ find . -type d -exec chmod 0755 {} \;



Change all files recursively to 644:

$ find . -type f -exec chmod 0644 {} \;