关于 chgrp 的问题
我这里有一个小要求。我有一个包含很多文件的目录。有一定数量的文件属于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以解决这个问题:
显然,请确保将
X_GNAME
替换为旧组名称,将Y_GNAME
替换为新组名称,可能还包括。 替换为基本路径。
有关更多信息,请参阅
find
手册页。This should take care of it:
Obviously, make sure you replace
X_GNAME
with the old group name, andY_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.