日期:2014-05-16  浏览次数:20577 次

linux批量修改特定目录下子目录的权限

利用find命令找出需要修改的目录,利用管线命令传递到chmod修改

find ./ -type d -name xxx -print0 | xargs -0 chmod -R777