批量修改文件权限

修改目录权限

find ./ -type d -exec chomd 755 {} \;

修改文件权限

find ./ -type f -exec chmod 644 {} \;

Published At