2024年11月Linux使用chgrp命令修改文件所属群组的方法(2)

发布时间:

  ⑴实例:改变文件的群组属性

  ⑵chgrp -v bin log.log

  ⑶[rootlocalhost test]# ll

  ⑷---xrw-r-- root root - : log.log

  ⑸[rootlocalhost test]# chgrp -v bin log.log

  ⑹“log.log” 的所属组已更改为 bin

  ⑺[rootlocalhost test]# ll

  ⑻---xrw-r-- root bin - : log.log

  ⑼将log.log文件由root群组改为bin群组

  ⑽实例:根据指定文件改变文件的群组属性

  ⑾chgrp --reference=log.log log.log

  ⑿[rootlocalhost test]# ll

  ⒀---xrw-r-- root bin - : log.log

  ⒁-rw-r--r-- root root - : log.log

  ⒂[rootlocalhost test]# chgrp --reference=log.log log.log

  ⒃[rootlocalhost test]# ll

  ⒄---xrw-r-- root bin - : log.log

  ⒅-rw-r--r-- root bin - : log.log

  ⒆改变文件log.log 的群组属性,使得文件log.log的群组属性和参考文件log.log的群组属性相同

  ⒇实例:改变指定目录以及其子目录下的所有文件的群组属性