This site has been archived and will no longer be updated.
You can find my new profile at neilpahl.com. My new blog is at 808.ninja.
I wanted to know how to chmod the fodlers one thing and then the files another... all recursivley.
For folders(directories):
find . -type d -exec chmod 777 {} \;
For files:
find . -type f -exec chmod 666 {} \;
PLEASE let me know if I'm doing something wrong, or if you have any suggestions or requests~
blog comments powered by Disqus