关于 chgrp 的问题

发布于 2024-10-20 15:57:31 字数 126 浏览 1 评论 0原文

我这里有一个小要求。我有一个包含很多文件的目录。有一定数量的文件属于 X 组,也有一定数量的文件属于 Y 组。现在,我的要求是将属于X组的文件转换为Y组。

这要多快才能完成?我假设我可能必须使用 xargs 命令。请帮忙。

I have a small requirement here. I have a directory with a lot of files. There are certain number of files which belong to X group and certain number of files which belong Y group. Now, my requirement is to convert the files belonging to X group to Y group.

How quickly this can be done ? I assuming I might have to use xargs command. Please help.

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

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

发布评论

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

评论(1

杀お生予夺 2024-10-27 15:57:31

这应该可以解决这个问题:

find . -group X_GNAME -exec chgrp Y_GNAME {} +

显然,请确保将 X_GNAME 替换为旧组名称,将 Y_GNAME 替换为新组名称,可能还包括 。 替换为基本路径。

有关更多信息,请参阅 find 手册页。

This should take care of it:

find . -group X_GNAME -exec chgrp Y_GNAME {} +

Obviously, make sure you replace X_GNAME with the old group name, and Y_GNAME with the new group name, and possibly . with the base path, if you're not in the correct directory.

See the find man page for more information.

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