奇怪的 rvm 列表输出
当我执行“rvm list”命令时,出现此错误。我正在使用 oh-my-zsh,但是在 bash 和 zsh 中加载它,我仍然遇到相同的错误。
")syntax error: invalid arithmetic operator (error token is "
ruby-1.8.7-p334 [ x86_64 ]
谢谢!
I'm getting this error when i do 'rvm list' command. I'm using oh-my-zsh, but loading it both in bash and zsh, I'm still getting the same error.
")syntax error: invalid arithmetic operator (error token is "
ruby-1.8.7-p334 [ x86_64 ]
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这看起来像一条 bash 错误消息,但呈现得很奇怪,因为该消息包含一个回车符。事实上,bash 正在显示
其中 ␍ 是回车符。如果文件中有回车符,可能是因为它使用 DOS/Windows 行结尾 (CR+LF)。将其转换为 Unix 行结尾(仅限 LF)。
This looks like a bash error message, but weirdly rendered because the message contains a carriage return. In fact bash was displaying
where ␍ is a carriage return. If you have a carriage return in a file, it's probably because it uses DOS/Windows line endings (CR+LF). Convert it to unix line endings (LF only).