msgbartop
A cronological documentation test project, nothing serious, really!
msgbarbottom

15 Sep 09 chmod only files or folders

Posted by

This post is just a personal note on how to chmod files or directories recursively

Recursive chmod only files within this folder

find . -type f -exec chmod 0600 {} ;

Recursive chmod only folders within this folder

find . -type d -exec chmod 0755 {} ;

Tags: ,

Leave a Comment

You must be logged in to post a comment.