How do I recursively execute chmod or chown for hidden files?
sudo chmod -R 775 * does not work on hidden files.
The same thing goes for sudo chown -R user:group.
|
How do I recursively execute
The same thing goes for | ||||
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
The wildcard
Or if you're okay also chmod'ing the current directory, do that and let
| |||||||
feedback
|
|
Read more about it in bash's
This will make
Disable it with:
| |||
|
feedback
|