Created on 2009-Nov-25
Updated on 2009-Nov-25
To chmod only directories within the directory you're in...
find ./ -type d -exec chmod 755 {} \;
To chmod only files within the directory you're in...
find . -type f -exec chmod 644 {} \;
A web and systems development journal (from a–too busy–web developer who does a lot of various IT work.)