chmod 755和chmod +x 区别 | Linux修改文件属性 | 小白笔记
【摘要】
Linux chmod命令 修改文件属性
参考链接:菜鸟教程
Linux修改文件属性 | 小白笔记
认识 chmod 命令chmod 755和chmod +x 区别
...
Linux chmod命令 修改文件属性
认识 chmod 命令
- 理解 数字设置 含义
- 理解 字母操作(符号模式) 参数含义
chmod 755和chmod +x 区别
看代码即可
# 创建 两个 shell 脚本
touch first.sh
touch second.sh
ll
-rw-rw-r-- 1 moli moli 0 Mar 4 04:05 first.sh
-rw-rw-r-- 1 moli moli 0 Mar 4 04:05 second.sh
# 分别 修改 属性
chmod 755 first.sh
chmod +x second.sh
ll
-rwxr-xr-x 1 zql zql 0 Mar 4 04:05 first.sh*
-rwxrwxr-x 1 zql zql 0 Mar 4 04:05 second.sh*
结论: chmod +x second.sh 效果等价于 chmod 775 third.sh
touch third.sh
chmod 775 third.sh
ll
-rwxrwxr-x 1 zql zql 0 Mar 4 04:05 second.sh*
-rwxrwxr-x 1 zql zql 0 Mar 4 04:11 third.sh*
文章来源: positive.blog.csdn.net,作者:墨理学AI,版权归原作者所有,如需转载,请联系作者。
原文链接:positive.blog.csdn.net/article/details/114365308
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)