Tip

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 {} ;

    Requires Free Membership to View

This was first published in August 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    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.