So I want a way to set chmod 755 to /opt/lampp/htdocs and all of its content including subfolders and files, and If I create a new folder or file the chmod of that should be also 755.
chmod 75 /opt/lampp/htdocs works but only for this folder :|
|
So I want a way to set
|
||||
|
|
|
Check the -R option
In future you can save a lot of time by checking the man page first:
So in this case:
|
|||||||||||||||||||
|
|
The answer above is correct, in that chmod -R 755 will set this as permissions to all files and folders in the tree. BUT WHY ON EARTH WOULD YOU WANT TO? it might make sense for the directories, but why set the execute bit on all the files? i suspect what you really want to do is set the directories to 755 and either leave the files alone or set them to 644 for this you can use the find command e.g. to change all the directories to 755:
to change all the files to 644:
|
|||||||||||||||
|
|
To set to all subfolders (recursively) use -R
|
|||||||||||
|
|
If you want to set permissions on all files to a+r, and all directories to a+x, and do that recursively through the complete subdirectory tree, use: chmod -R a+rX * The X (that is capital X, not small x!) is ignored for files (unless they are executable for someone already) but is used for directories. |
||||
|
|
sudo chmod 755 -R /whatever/your/directory/is be care with that, it can really hurt you if you change the permissions of the wrong files/folders |
|||
|
|
-R make every sub folder ,including current folder |
|||
|
|
|
You might want to consider this answer given by nik on superuser and use "one chmod" for all files/folders like this:
|
|||
|
|
|
|
|||
|
|
|
for mac osx Lion it is
and yes as all other say be careful on doing this. |
|||
|
|