我怎样才能消除这些 bash 错误?

我怎样才能消除这些 bash 错误?

我正在使用 Mac OS X 10.6.8。当我启动终端时,我收到了这些消息。

我该如何消除此错误?我想从 bash 配置文件中删除此配置。

-bash: /etc/profile.d/sm.sh: No such file or directory
-bash: /etc/profile.d/rvm.s: No such file or directory

答案1

这些条目用于 Ruby 版本管理器。据推测该软件已被删除,但有问题的语句仍保留在您的 /etc/profile 中 - 启动终端时会产生错误。

使用您最喜欢的编辑器并编辑/etc/profile。找到以下几行:

source /etc/profile.d/sm.sh
source /etc/profile.d/rvm.sh

并像这样注释掉它们-:

# source /etc/profile.d/sm.sh
# source /etc/profile.d/rvm.sh

相关内容