linux change all folders to 755 and files to 644 code example
Example: linux change all folders to 755 and files to 644
find . -type d -print0 | xargs -0 chmod 755
find . -type f -print0 | xargs -0 chmod 644
find . -type d -print0 | xargs -0 chmod 755
find . -type f -print0 | xargs -0 chmod 644