shiva Asked: 2016-06-08 18:35:02 +0800 CST2016-06-08 18:35:02 +0800 CST 2016-06-08 18:35:02 +0800 CST centos中更改子目录的权限和所有权 772 我有以下子文件夹结构。 /public/trunk/src/common/site/ 我想单独更改站点及其子目录的所有权和权限。 我怎样才能做到这一点? 谢谢 linux centos permissions owner 1 个回答 Voted Best Answer Manii 2016-06-08T21:31:38+08:002016-06-08T21:31:38+08:00 您可以使用以下命令更改所有文件和子目录的权限和所有权: chown user:group /public/trunk/src/common/site/ -R & chmod 664 /public/trunk/src/common/site/ -R 如果您想跳过文件并只想应用于目录 find /public/trunk/src/common/site/ -type d -print0 | xargs -0 chmod 775
您可以使用以下命令更改所有文件和子目录的权限和所有权:
chown user:group /public/trunk/src/common/site/ -R
&
chmod 664 /public/trunk/src/common/site/ -R
如果您想跳过文件并只想应用于目录
find /public/trunk/src/common/site/ -type d -print0 | xargs -0 chmod 775