Return to Snippet

Revision: 19602
at October 26, 2009 18:26 by danshields


Initial Code
for folder only to be 755 + sub dir
find . -type d -exec chmod 0755 {} \;

for file only to be 644 + sub dir
find . -type f -exec chmod 0644 {} \;

Initial URL


Initial Description


Initial Title
Changing permission for folders only and files only

Initial Tags


Initial Language
Bash