批量修改文件夹权限为755,文件权限为644 2021-01-09 tech linux 1 mins 210 字 文件夹 find . -type d -print0 | xargs -0 chmod 0755 文件 find . -type f -print0 | xargs -0 chmod 0644 参考资料 https://stackoverflow.com/questions/18817744/change-all-files-and-folders-permissions-of-a-directory-to-644-755