回答:
実行find
上の-type d
(ディレクトリを含む)-exec
を実行するために、プライマリchmod
のみのフォルダに:
find /your/path/here -type d -exec chmod o+x {} \;
確実に目的のオブジェクトでのみ実行されるようにするには、find /your/path/here -type d
最初に実行するだけです。見つかったディレクトリを単に出力します。
ウィキペディアのコマンドラインの例-chmodを参照してください。
chmod -R a-x+X directory remove the execute permission on all files in
a directory tree, while allowing for directory browsing.
ダニエルによって追加されたように:これはあなたの場合に動作するはずです:
chmod -R o+X directory
chmod -R o+X directory
、OPで機能するはずです。