linux之chmod命令


linux之chmod命令

 

 如上图:

开头为“-”表示文件,开头为“d”表示目录

红框中共有9个字符,前三个字符表示为User(用户)的权限,中间三个字符为Group(组)的权限,末尾三个表示Other(其他)的权限

字母rwx,分别为read,write,execute即读,写,执行三种权限

chmod u+x 11.txt 设置11.txt的user加x的权限

chmod a+rwx 11.txt 设置11.txt 的all加rwx权限

chmod g-w 11.txt   设置11.txt的group减w权限

chmod u=rw 11.txt   设置11.txt的user权限为rw权限

chmod 777 ./ -R   递归当前目录所有文件为777权限

linux之chmod命令

 

原创文章,作者:Carrie001128,如若转载,请注明出处:https://blog.ytso.com/244613.html

(0)
上一篇 2022年4月17日
下一篇 2022年4月17日

相关推荐

发表回复

登录后才能评论