find . -type d -exec chmod 755 {} + 这个是把当前目录下及子目录的属性改成755find . -type f -exec chmod 644 {} + 这个是把当前目录及子目录中的文件属性改成644
find . -type d -exec chmod 755 {} \;