On Fri, 7 Dec 2001, Alexander Shaw wrote:

> Is it possible to change the ownership or permissions of the contents
> of entire directory including the sub directories? If so, how?

chown -R
chmod -R

Be careful with the latter.  You usually don't want directory and file 
permissions to be the same thing.  Something like this is better:

find /path -type f -print | xargs chmod 0640
find /path -type d -print | xargs chmod 0750

-- 
If I had a dollar for every brain that you don't have,
        I'd have one dollar. - Squidward to SpongeBob



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to