Answers:
用于*/
仅匹配目录。
chmod g+s /var/www/*/
要匹配所有目录和子目录,请使用**/*/
(前提是您已globstar
在bash中启用):
shopt -s globstar
chmod g+s /var/www/**/*/
您可以使用find,请参见以下示例
find /var/www/ -type d -exec chmod g+s {} \;
-maxdepth
find
参数。