Answers:
在主要目录的(目录)上运行find
,仅对文件夹执行以下操作:-type d
-exec
chmod
find /your/path/here -type d -exec chmod o+x {} \;
为了确保它仅对所需的对象执行,您可以先运行find /your/path/here -type d
;然后运行。它只会简单地打印出找到的目录。
请参阅命令行示例-Wikipedia中的chmod。
chmod -R a-x+X directory remove the execute permission on all files in
a directory tree, while allowing for directory browsing.
正如丹尼尔(Daniel)所补充:这应该适合您的情况:
chmod -R o+X directory
chmod -R o+X directory
应适用于OP。