不确定运行 Ruby 脚本的正确权限
当我运行 Ruby 脚本时,出现以下警报
warning: Insecure world writable dir /Users/cs/Documents in PATH, mode 040777
解决方案是更改权限。 但是,我不确定哪一个是合适的。
我出于不同目的使用许多用户帐户。 我有一个主帐户,我可以通过它在我的 cs -account 上运行命令。
您会为 cs 帐户授予哪些权限?
I get the following alert when I run a Ruby script
warning: Insecure world writable dir /Users/cs/Documents in PATH, mode 040777
The solution is to change the permissions. However, I am unsure which one is the appropriate one.
I use many user accounts for different purposes. I have one main account by which I run the commands at my cs -account.
Which permissions would you give for the cs -account?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需运行 chmod og-w /Users/cs/Documents 一切都会好起来的。
这将删除“其他”和“组”写入访问权限。
Just run
chmod og-w /Users/cs/Documents
and all should be well.This will remove the "other" and "group" write access permissions.