1、修改目录权限:

find /opt/lampp/htdocs -type d -exec chmod 755 {} \;


2、修改指定目录及子目录下所有文件的权限:

find /opt/lampp/htdocs -type f -exec chmod 644 {} \;