Change permissions of all nested files and directories
by hackprime
For directories:
find . -type d -print0 | xargs -0 chmod -R 0755
For files:
find . -type f -print0 | xargs -0 chmod -R 0644
by hackprime
For directories:
find . -type d -print0 | xargs -0 chmod -R 0755
For files:
find . -type f -print0 | xargs -0 chmod -R 0644