[Linux]chmodでファイルのバーミッションを755に変更する方法

2021年4月15日

書式
a 全てのユーザ
x 実行権
r 読み取り
w 書き込み
u 所有者

使用例1
# chmod a+x test.txt
# ls -l test.txt
-rwxr-xr-x. 1 root root 1404 4月 14 22:10 test.txt

使用例2
# chmod a=rx,u+w sample.txt
# ls -l sample.txt
-rwxr-xr-x. 1 root root 23 4月 14 22:07 sample.txt

使用例3
# chmod 755 test02.txt
# ls -l test02.txt
-rwxr-xr-x. 1 root root 38417 4月 14 22:20 test02.txt

Linux

Posted by arkgame