chmod -R 775 *.cgi only changes permissions on the files in the current directory, the files in the subdirectory don't get modified at all. This is the exact same functionality as simply doing chmod 775 *.cgi. I have seen people use solutions such as with find and whatnot. Ok great, but why does -R mode even exist if it doesn't even accomplish anything?
|
|
|||||
|
|
Probably because you have no directories named
For example:
|
||||
|
|
|
If you say (It will recurse into any directory which matches |
|||
|
|
To accomplish what you want try
Here |
|||
|
|
|
To find all cgi files in the current directory and its subdirectories, and run
|
|||
|
|
|
Put the case that foo0.cgi and foo1.cgi are the contents of the directory. If you type What you want to do can be accomplished easily:
|
|||
|
|
