changing chmod for files but not directories changing chmod for files but not directories unix unix

changing chmod for files but not directories


A find -exec answer is a good one but it suffers from the usually irrelevant shortcoming that it creates a separate sub-process for every single file. However it's perfectly functional and will only perform badly when the number of files gets really large. Using xargs will batch up the file names into large groups before running a sub-process for that group of files.

You just have to be careful that, in using xargs, you properly handle filenames with embedded spaces, newlines or other special characters in them.

A solution that solves both these problems is (assuming you have a decent enough find and xargs implementation):

find . -type f -print0 | xargs -0 chmod 644

The -print0 causes find to terminate the file names on its output stream with a NUL character (rather than a space) and the -0 to xargs lets it know that it should expect that as the input format.


Another way to do this is to use find ... -exec ... as follows:

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

The problem is that the -exec starts a chmod process for every file which is inefficient. A solution that avoids this is:

find . -type f -exec chmod 644 {} +

This assembles as many file names arguments as possible on the chmod processes command line. The find ... | xargs ... approach is similar; see the accepted answer.

For the record, using back-ticks is going to break if there are too many files to be chmoded, or the aggregated length of the pathnames is too large.


My succinct two cents...

Linux:

$ chmod 644 `find -type f`

OSX:

$ chmod 644 `find . -type f`

This works to recursively change all files contained in the current directory and all of its sub-directories. If you want to target a different directory, substitute . with the correct path:

$ chmod 644 `find /home/my/special/folder -type f`