chmod-R 777
Article by Rampant author Laurent Schneider
This is one of the things I hate to see,
recursively changing everything to 777 .
If you want to give read access to all,
then 644 is enough for files and 755 for directories. If you
want to give execution permission too, you could give 755 to
executable files.
Also sometimes you have files with special
permission like suid or guid bit (to run as the owner instead of
to run as the run user), so it would be best to use relative (go+r)
to make the file readable to group and others.
Therefore I prefer relative change. Still
there is one thing I do not want, is making every file
executable…
Ok, here it is:
chmod -R a+rX .
Note the big X we change recursively all
files and dirs to be readable, and we set the executable flag
ONLY IF the file is executable for the owner !
|
|