Return to Snippet

Revision: 13801
at May 8, 2009 12:24 by rafa


Updated Code
find path/ -type d -exec chmod 755 {} \;

find path/ -type f -exec chmod 644 {} \;

Revision: 13800
at May 8, 2009 12:24 by rafa


Updated Code
find /path -type d -exec chmod 755 {} \;

find /path -type f -exec chmod 644 {} \;

Revision: 13799
at May 6, 2009 13:32 by rafa


Initial Code
find /path -type d -exec chmod 755 {} ;

find /path -type f -exec chmod 644 {} ;

Initial URL


Initial Description


Initial Title
CHMOD files recursively

Initial Tags
command, files

Initial Language
Other