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