Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个由 root 拥有的目录结构,其中一些文件可由 root 执行,并且所有文件/目录都可由所有用户读取。
什么是让所有用户都可以执行其中的所有可执行文件(但不是其他文件)的好方法?
尝试(作为根):
find /your/directory -executable -type f -exec chmod o+x {} +