Return to Snippet

Revision: 56958
at April 27, 2012 00:33 by wnasich


Initial Code
for folders(directories):
find . -type d -exec chmod 777 {} \;

for files:
find . -type f -exec chmod 666 {} \;

Initial URL
http://www.blog.highub.com/shell/linux-chmod-777-recursively/comment-page-1/#comment-8350

Initial Description
In order to avoid make files executable,  you can use these to chmod files and directories differently.

Initial Title
Changing permissions recursively by files and directories

Initial Tags
files

Initial Language
Bash