답변:
실행 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에서는 작동합니다.