> I need to chmod a directory tree to change the permissions on the 
> directories but not the files they contain.
> 
> Is there a way to do this with chmod or another tool?

You can try piping the output of find into the xargs command. For example,

find /home/chadws/mythtv -type d | xargs chmod 2775


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to