chmod : アクセス権を変更する
[構文] chmod オプション アクセス権 ファイル/ディレクトリ
オプション
 
# chmod 644 /home/test.txt
/home/test.txt のアクセス権を 644 に変更
# chmod a+rx /home/test.sh
/home/test.sh の a (=ugo : user,group,other) に rx (read,execute) アクセス権を付加
-R 対象ディレクトリ配下のファイル/ディレクトリ全てのアクセス権を変更
# chmod -R 700 /home/work
/home/work 配下の全てファイル/ディレクトリのアクセス権を 700 に変更
-v 対象のファイル/ディレクトリごとに、変更内容の診断結果を表示
# chmod -v 600 /home/testfile.txt
/home/testfile.txt のアクセス権を 600 に変更し、診断結果を表示