如何获取“irb(main):001:0>” 提示而不是“>>”
我的 Mac 上预装了 Ruby,所以我想看看它。 我注意到的第一件事是 irb 提示 >> 而不是 irb(main):001:0>。 我找不到任何关于如何通过 Google 更改此设置的内容,因为每个人都在使用 irb(main):001:0> 在他们的代码中;-)
你能帮我吗?
PS:并不是我认为 Ruby 坏了,而是我想在编程时看起来更书呆子;-)
Ruby is preinstalled on my Mac and so I wanted to have a look at it. First thing I noticed, is that irb prompts >> instead of irb(main):001:0>. I can't find anything on how to change this with Google because everyone is using irb(main):001:0> in their code ;-)
Can you help me out?
PS: It's not that I think Ruby is broken, but I want to look more nerdy while programming ;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我所做的就是将其作为我的 .bashrc 中的别名,这样我就不必每次都输入它。
希望这可以帮助!
What I do is make that into an alias in my .bashrc so I don't have to type it every time.
Hope this helps!
转到位置 /home/leapfrog/.rvm/scripts
打开文件“irbrc.rb”,使用超级用户权限覆盖将
哈希“@prompt”的内容更改为以下内容
希望这对您有帮助:)
goto the location /home/leapfrog/.rvm/scripts
Open the file ‘irbrc.rb’, use superuser power to over-write the
Change the content of the hash '@prompt' to the following
Hope this help you :)