回答:
実行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で機能するはずです。