> Linux教程 > Linux学习 >

linux 批量修改目录权限(注意是只修改目录哦)

方法一:find / -type d -exec chmod 777 {} \;
 
方法二:find / -type d | xargs  chmod 777;
(责任编辑:IT)