You are not logged in.
Pages: 1
Hey guys!
Got a problem: I need to "chmod a-r *" all files in all subdirectories, but I don't want to change the attributes of the directories!
How can I do that... :?
Moritz
Offline
How about (this is untested) something like 'chmod a-r `find . -type f`'?
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
this worked for me:
find /home/ftp/ -type f -exec chmod a-x {} ;
Offline
Pages: 1