chmod operation on directories / files

Gordon devel user0 at tkgeomap.org
Wed May 7 12:36:51 UTC 2008


On Wed, May 07, 2008 at 01:56:42PM +0200, Zbigniew Szalbot wrote:
> 
> How do I chmod separately files and directories?
> 
> If I use chmod -R 644 then it will go through all the subdirectories 
> assigning everything 644 permissions, directories including.
> 
How about?

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;

If there are a lot of them, you might want to pipe to xargs.

Cheers,
Gordon


More information about the freebsd-questions mailing list