DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Linux - Change File/Directory Permissions Separately
Change permission of all files or all directories separately from a set starting point.
// Directories:
find . -type d -exec chmod XXX {} \;
// Files:
find . -type f -exec chmod XXX {} \;




