奇怪的 rvm 列表输出

发布于 2024-10-23 18:49:22 字数 214 浏览 0 评论 0原文

当我执行“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 技术交流群。

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

发布评论

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

评论(1

薄荷梦 2024-10-30 18:49:22

这看起来像一条 bash 错误消息,但呈现得很奇怪,因为该消息包含一个回车符。事实上,bash 正在显示

bash: 42: syntax error: invalid arithmetic operator (error token is "␍")

其中 ␍ 是回车符。如果文件中有回车符,可能是因为它使用 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

bash: 42: syntax error: invalid arithmetic operator (error token is "␍")

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).

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