「Linux」chmodでディレクトリやファイルのアクセス権限を設定するサンプル
構文1
chmod a+w 「file」
chmod a+w 「directory」
全てのユーザが書き込み可能
使用例
chmod a+w /opt/akrgame/study/work
chmod a+w /opt/akrgame/study/test.php
構文2
chmod a+x 「file」
chmod a+x [directory]
全てのユーザが実行可能
使用例
chmod a+x /opt/akrgame/study/work
chmod a+x /opt/akrgame/study/test01.sh