LINUX

LINUX CHGRP指令

介紹

chgrp指令用來變更檔案(夾)所屬群組。

語法

chgrp [options] group_spec files

常用的options

--dereference  Follow symbolic links and operate on the files they point to.

-R             Recursively change the ownership within a directory hierarchy.

group_spec參數

group_spec參數可以是下列其中一種格式:

  1. 群組名稱(或ID
  2. --reference=file_name

第二種會將群組變更為file_name的群組。

範例

你可以將myfile的群組變更為eecsmt

⤍ chgrp eecsmt myfile

你也可以一次變更多個檔案(夾)的群組:

⤍ chgrp eecsmt myfile1 myfile2 mydir1 mydir2

如果你想要將檔案夾內的檔案也統一變更,需要使用-R

⤍ chgrp -R eecsmt mydir

發佈留言