檔名

Linux chgrp指令 語法

作用:chgrp指令用於變更檔案或目錄的所屬群組。

語法:chgrp [-cfhRv][--help][--version][所屬群組][檔案或目錄...] 或chgrp [-cfhRv][- -help][--reference=<參考檔案或目錄>][--version][檔案或目錄...]

Linux chgrp指令 範例

實例1:改變檔案的群組屬性:

chgrp -v bin log2012.log

輸出:

[root@localhost test]# ll---xrw-r-- 1 root root 302108 11-13 06:03 log2012.log[root@localhost test]# chgrp -v bin log2012.log

"log2012.log" 的所屬群組已變更為bin

[root@localhost test]# ll---xrw-r-- 1 root bin  302108 11-13 06:03 log2012.log

說明:將log2012.log檔案由root群組改為bin群組

實例2:依據指定檔案改變檔案的群組屬性

chgrp --reference=log2012.log log2013.log

輸出:

#
[root@localhost test]# ll---xrw-r-- 1 root bin  302108 11-13 06:03 log2012.log-rw-r--r-- 1 root root     61 11-13 06:03 log2013.log[root@localhost test]#  chgrp --reference=log2012.log log2013.log 
[root@localhost test]# ll---xrw-r-- 1 root bin  302108 11-13 06:03 log2012.log-rw-r--r-- 1 root bin      61 11-13 06:03 log2013.log