chmod:修改文件的权限
修改三类用户的权限 -rwxrwxrwx=777
chmod 777 file,...
-R 包含目录及其内部文件全部修改
chmod --reference=/path/file file,...
修改某类用户的权限
u,g,o,a u=rx,g=rw,o=r,a=rwx
chmod a=rwx file,...
-R 包含目录及其内部文件全修改
chmod --reference=/path/file file,...
修改某位用户的某位权限或某些位权限
chmod ugoa+-rwx file,...