[Linux]chmodコマンドの使い方

2021年4月16日

1.所有者に実行権限を付与する
# chmod u+x test.sh
# ls -la test.sh
-rwxr–r–. 1 root root 0 4月 15 23:37 test.sh

2.所有者とグループに実行権限を付与
# chmod ug+x test.sh
# ls -la test.sh
-rwxr-xr–. 1 root root 0 4月 15 23:37 test.sh

3.所有者、グループ、他のユーザーに実行権を付与
# chmod +x test.sh
# ls -la test.sh
-rwxr-xr-x. 1 root root 0 4月 15 23:37 test.sh

Linux

Posted by arkgame