====== Linux - Files - Change file permissions ======
===== Recursive chmod only directories within the current folder =====
find . -type d -exec chmod 0755 {} ;
----
===== Recursive chmod only files within the current folder =====
find . -type f -exec chmod 0600 {} ;
----