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

方法一:find / -type d -exec chmod 777 {} \;
方法二:find / -type d | xargs  chmod 777;

编程技巧