簡明Linux命令列筆記 chgrp

2022-07-03 20:57:11 字數 994 閱讀 8780

改變與檔案相關聯的組

chgrp [options]group file-list

引數group

為新組的名稱或者數值id,file-list

為要改變其相關聯組的檔案路徑名列表

-c             顯示更改過程資訊

-f              強制更改

-r             遞迴更改目錄

-v              顯示更改過後的資訊

chgrp

darling work # ls -l

總用量

0-rw-r--r-- 1 siu siu 0 1月 10

15:08

temp

darling work #

chgrp

jack temp

darling work #

ls -l

總用量

0-rw-r--r-- 1 siu jack 0 1月 10

15:08 temp

更改普通檔案temp的群組

chgrp -rv

darling work # ls -l

總用量

4drwxr-xr-x 2 siu siu 4096 1月 10

15:13

dirdarling work #

chgrp -rv jack dir

changed group of

"dir

"from siu to jack

darling work #

ls -l

總用量

4drwxr-xr-x 2 siu jack 4096 1月 10

15:13

dir

遞迴更改目錄的群組,並顯示更改資訊

tips

更改群組需要root許可權

簡明Linux命令列筆記 cat

連線或顯示檔案 cat options file list file list 是cat 要處理的單個檔案路徑名或多個檔案路徑名列表,如果不指定任何引數或指定乙個連字元 代替檔名,cat就從標準輸入讀取資訊,然後列印 e 在每行結束處顯示 n 對輸出的所有行編號 b 對輸出的非空所有行編號 s 刪除...

簡明Linux命令列筆記 ln

為檔案建立鏈結 ln options existing file new link ln options existing file list directory ln可以為乙個或多個檔案建立硬鏈結或符號 軟 鏈結。對於目錄,只能建立符號鏈結,而不能建立硬鏈結 引數第一種格式 existing fi...

簡明Linux命令列筆記 locate

在mlocate資料庫中搜尋條目 locate option pattern pattern 是locate 需要搜尋的檔名或者正規表示式 i 忽略大小寫 r 使用正規表示式搜尋 locate locate mlocate.db usr share man man5 mlocate.db.5 gz ...