permissions - How to set chmod for a folder and all of its subfolders and files in Linux Ubuntu Term
Here's another way to set directories to 775 and files to 664. find /opt/lampp/htdocs \ \( -type f -exec chmod ug+rw,o+r {} \; \) , \ \( -type d -exec chmod ug+rwxs,o+rx {} \; \) It may look long, but it's pretty cool for t...