需要澄清权限代码
我正在阅读一些文档,其中开发人员说某个文件需要设置为 +rx 模式,因为该文件正在被外部服务访问。
这指的是什么 CHMOD 代码?第777章
谢谢
I was reading some documentation where a developer is saying that a certain file needs to be set to +rx mode because the file is being accessed by outside services
What CHMOD code does this refer to? 777?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
+rx
表示:添加读取和执行权限(555)减去 umask 位到默认权限。通常,umask 为 022,默认权限为 644,因此结果将为 755。
计算
0644 | (0555&~0022):
+rx
means: Add read and execute permissions (555) minus the umask bits to the default permissions.Usually, the umask is 022 and the default permissions 644, so the result would be 755.
The calculation
0644 | (0555 & ~0022)
: