linux 下赋文件夹权限
1、给文件夹赋权限
find . -type f -exec chmod 755 "{}" \;
2、给文件赋权限
find . -type d -exec chmod 755 "{}" \;