linux 文件夹-文件权限设置
时间:2014-07-01 22:35:28
收藏:0
阅读:235
只设置文件夹权限为755 文件权限为644
find -type d -exec chmod 755 {} \;
find -type f -exec chmod 644 {} \;
或者
find -type d|xargs chmod 755
find -type f|xargs chmod 644
评论(0)