How to Set all directories to 755 and all files to 644
Task: set different attributes for files and directories
Solution:
find . -type d -exec chmod 0755 {} \;
find . -type f -exec chmod 0644 {} \;
Done.
Scientific Algorithms and Analytics
Task: set different attributes for files and directories
Solution:
find . -type d -exec chmod 0755 {} \;
find . -type f -exec chmod 0644 {} \;
Done.