rvm – 如何找到.bash_profile并添加到我的shell的初始化文件中?

前端之家收集整理的这篇文章主要介绍了rvm – 如何找到.bash_profile并添加到我的shell的初始化文件中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用rvm升级 ruby.
pragmatic site,它说:

The important part is to add the following line to the end of your shell’s initialization file (.bash_profile):

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

我该怎么做呢?这个初始化文件在哪里?
请帮忙

它将是/home/$USER/.bash_profile,但只有在您实际使用bash作为shell时才会出现.其他shell将使用带有名称的“点文件”代替.您可以使用ls -ad $HOME /.*查看它们
原文链接:https://www.f2er.com/bash/384848.html

猜你在找的Bash相关文章