35. Linux 系統中,若是 test.sh 檔案屬性為「-rwxr-x r--」,要將檔案屬性改為「-r-xr-xr-x」,下列哪個指令可以完成?
(A)chmod o-x test.sh
(B)chmod 755 test.sh
(C)chmod u=rx test.sh
(D)chmod 555 test.sh。
答案:登入後查看
統計: A(7), B(7), C(11), D(72), E(0) #2234746
統計: A(7), B(7), C(11), D(72), E(0) #2234746
詳解 (共 1 筆)
#5768649
7=4.2.1=rwx 可讀取,可執行,可寫入
5=4.0.1=r-x 可讀取,可執行,不可寫入
0
0