thePMG Rated XXX
|
Posted: Tue, 21 Dec 2004 21:53:38 Post Subject: |
|
|
I hate using chmod recursevly as it sets everything (including files) to whatever permissions you might just want on your directories, and vice versa.
This works for me:
cd /some/location && find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \;
I use it to keep things sane in my file storeage area. _________________ It's got something to do with motherboards and fuzzy logic, f**k, I don't know... |
|