linux/unix 的檔案呼叫許可權分為**:檔案擁有者、群組、其他。利用chmod可以控制檔案如何被他人所呼叫。
語法:chmod [-cfvr][--help] [--version] mode file...
mode:
許可權設定子串,格式為:[ugoa...][[+-=][rwxx]...][,...]
引數說明:
案例:將檔案file.txt設為所有人皆可讀取:chmod ugo+r file.txt
或chmod a+r file.txt
將檔案file1.txt 與file2.txt設為該檔案擁有者,與其所屬同乙個群體者可寫入,但其他以外的人則不可寫入:chmod ug+w,o-w file1.txt file2.txt
將start.sh設定為只有該檔案擁有者可以執行:chmod u+x start.sh
將當前目錄下的所有檔案與子目錄都設為任何人可讀取:chmod -r a+r *
此外chmod也可以用數字來表示許可權,如:chmod 777 file
語法:chmod abc file
其中,abc各位乙個數字,分別表示user、group、other的許可權
r=4,w=2,x=1
案例:chmod a=rwx file 等同於 chmod 777 file
chmod ug=rwx,o=x file 等同於 chmod 771 file
若用chmod 4755 filename 可使此程式具有root許可權
Linux命令 chmod命令
chmod命令 改變檔案或目錄的訪問許可權 許可權代號 r 檔案被讀取 4 w 檔案被寫入 2 x 檔案被執行 1 許可權範圍 u 檔案所有者 g 檔案所有者所在組 o 其他 a 全部 建立檔案 touch demo1.txt 顯示建立的檔案 ls l demo1.txt 執行結果 rw rw r ...
chmod命令詳解
在linux作業系統中,chmod命令用於更改檔案的屬性,很多人也許知道 chmod 666 php.ini 是將php.ini檔案的屬性改為rw rw rw 但不明白具體原因,下面將其進行詳細介紹。在linux的終端中輸入 ls l php.ini 能夠檢視php.ini檔案的詳細資訊,假設其詳細...
chmod命令詳解
一,chmod命令 zhangy blackghost music chmod help 用法 chmod 選項 模式 模式 檔案.或 chmod 選項 八進位制模式 檔案.將每個 檔案 的模式更改為 模式 c,changes 類似 verbose,但只在有更改時才顯示結果 no preserve ...