Change directory permissions recursively
Here is a command that will let you change the directory permission of all the sub-directories. Often times you only need to change the directory permissions under a given project root, for example, to make a group writable and world readable. This cannot be done with the "chmod -R " command because this will affect files also. We can do the same using the "find" command.
find . -depth -type d -exec chmod 775 {} ;
SearchSecurity.com members gain immediate and unlimited access to breaking industry news, virus alerts, new hacker threats, highly focused security newsletters, and more -- all at no cost. Join me on SearchSecurity.com today!
Michael S. Mimoso, Editorial Director
This was first published in August 2002
Disclaimer:
Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.
Join the conversationComment
Share
Comments
Results
Contribute to the conversation