我已尝试使用以下命令对文件夹中的许多图像进行 chmod ...
chown -R apache:apache *
但我得到以下错误
-bash: /usr/bin: Argument list too long
然后我尝试...
ls | xargs chown -R apache:apache *
然后收到以下消息...
-bash: /usr/bin/xargs: Argument list too long
有没有人有办法做到这一点?我很难过:(
非常感谢
威廉