# 批量修改目录权限,7为rwx(可读写可执行),5为rx(可读可执行)
find . -type d -exec chmod 755 {} \;
# 批量修改文件权限,6为rw(可读写),4为rw(可读)
find . -type f -exec chmod 644 {} \;
参考资料:
# 批量修改目录权限,7为rwx(可读写可执行),5为rx(可读可执行)
find . -type d -exec chmod 755 {} \;
# 批量修改文件权限,6为rw(可读写),4为rw(可读)
find . -type f -exec chmod 644 {} \;
参考资料: