Re: Pls with this 'find' command line
larryalk <nobody> wrote:
> [...] made many subdirectories _not_ executable.
> [...]
> find . -type d -execdir chmod u+x '{}' \;
Interestingly, chmod implements something similar
with the capital X flag,
chmod -R u+X .
|