介紹
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
參數可以是下列其中一種格式:
- 群組名稱(或
ID
) --reference=file_name
第二種會將群組變更為file_name
的群組。
範例
你可以將myfile
的群組變更為eecsmt
:
⤍ chgrp eecsmt myfile
你也可以一次變更多個檔案(夾)的群組:
⤍ chgrp eecsmt myfile1 myfile2 mydir1 mydir2
如果你想要將檔案夾內的檔案也統一變更,需要使用-R
:
⤍ chgrp -R eecsmt mydir
發佈留言