Linux 更改组权限以匹配所有者权限

发布于 2024-09-19 04:10:49 字数 341 浏览 10 评论 0原文

假设我在 Linux 上有一个目录,其中包含一堆文件和子目录。这就是根目录:

drwxr-xr-x  13 user1 group1    4096 May  7 15:58 apps

现在,我只想更改这些权限的组部分。我想对其进行更改,使其与所有者部分完全匹配。该目录的结果将是:

drwxrwxr-x  13 user1 group1    4096 May  7 15:58 apps

但是,我想要一个脚本或命令自动执行此操作,不仅针对该目录,而且针对该目录下递归的每个子目录和文件。有人知道怎么做吗?

谢谢。

Suppose I have a directory on Linux with a bunch of files and subdirectories. This is that root directory:

drwxr-xr-x  13 user1 group1    4096 May  7 15:58 apps

Now, I only want to alter the group portion of those permissions. I want to alter it in such a way that it exactly matches the owner portion. The result for that directory would be:

drwxrwxr-x  13 user1 group1    4096 May  7 15:58 apps

But, I want a script or command to do this automatically, not just for that directory but for every subdirectory and file recursively under it. Anyone know how?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心奴独伤 2024-09-26 04:10:49

尝试一下(首先测试一下):

chmod -R g=u apps

当您指定字段(ugo 时,= 会复制权限)在右侧,或者当您在右侧指定权限(rwx)时绝对设置它。

Give this a try (test it first):

chmod -R g=u apps

The = copies the permissions when you specify a field (u, g or o) on the right side or sets it absolutely when you specify a permission (r, w or x) on the right.

爱要勇敢去追 2024-09-26 04:10:49

这很简单:

chmod g=u <file>

That's simple:

chmod g=u <file>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文