批量修改文件夹权限为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
find . -type d -print0 | xargs -0 chmod 0755
find . -type f -print0 | xargs -0 chmod 0644