如何使用 CHMOD(数字)检查写入权限?

发布于 2024-10-31 12:49:08 字数 60 浏览 1 评论 0原文

例如,当我有 0755 时,如何检查写入权限?我不能使用“-rw”等。我的 perl 脚本需要它(作业)。

How to check write permission when i have for example 0755 ? I cant use "-rw" etc. I need it for my perl script (homework).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

女皇必胜 2024-11-07 12:49:08

该八进制数字翻译为

7   5   5           # octal
111 101 101         # binary
rwx r-x r-x         # permissions for owner, group and others

希望这会有所帮助。您应该能够隔离您感兴趣的位并检查它是否已设置,不是吗?

That octal number number translates to

7   5   5           # octal
111 101 101         # binary
rwx r-x r-x         # permissions for owner, group and others

Hope this helps. You should be able to isolate the bit you are interested in and check if it is set, aren't you?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文