linux - 在 .bash_profile 中从哪里获取 .profile 以在 Cygwin 中安装 RVM?

标签 linux bash unix cygwin rvm

我正在使用 cygwin 在 Windows 计算机上安装 RVM。我使用的命令是curl -L https://get.rvm.io | bash -s stable获得RVM。但有一个问题。请参阅下面输出中的警告部分,并请帮助我修复它。

# mspc,
#
#   Thank you for using RVM!
#   We sincerely hope that RVM helps to make your life easier and more enjoyable!!!
#
# ~Wayne, Michal & team.

In case of problems: http://rvm.io/help and https://twitter.com/rvm_io

  * WARNING: You have '~/.profile' file, you might want to load it,
    to do that add the following line to '/home/mspc/.bash_profile':

      source ~/.profile

这行代码应该放在哪里?

.bash_profile 文件的源代码 -

# base-files version 4.2-3

# ~/.bash_profile: executed by bash(1) for login shells.

# The latest version as installed by the Cygwin Setup program can
# always be found at /etc/defaults/etc/skel/.bash_profile

# Modifying /etc/skel/.bash_profile directly will prevent
# setup from updating it.

# The copy in your home directory (~/.bash_profile) is yours, please
# feel free to customise it to create a shell
# environment to your liking.  If you feel a change
# would be benifitial to all, please feel free to send
# a patch to the cygwin mailing list.

# User dependent .bash_profile file

# source the users bashrc if it exists
if [ -f "${HOME}/.bashrc" ] ; then
  source "${HOME}/.bashrc"
fi

# Set PATH so it includes user's private bin if it exists
# if [ -d "${HOME}/bin" ] ; then
#   PATH="${HOME}/bin:${PATH}"
# fi

# Set MANPATH so it includes users' private man if it exists
# if [ -d "${HOME}/man" ]; then
#   MANPATH="${HOME}/man:${MANPATH}"
# fi

# Set INFOPATH so it includes users' private info if it exists
# if [ -d "${HOME}/info" ]; then
#   INFOPATH="${HOME}/info:${INFOPATH}"
# fi

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*

最佳答案

您可以将该行添加到该文件中的任何位置。唯一的问题是是否需要在 rvm 加载之前或之后加载,我无法回答。

您是否需要执行此操作取决于该文件中是否有您真正需要的内容,因为很可能没有。

关于linux - 在 .bash_profile 中从哪里获取 .profile 以在 Cygwin 中安装 RVM?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27211519/

相关文章:

python - 用于独特集的标准 unix 工具

python - Pyudev - 调用函数两次

linux - 如何从 bash 脚本中确定 IP 地址?

bash - 如何关闭 OS X bash 时间码中的冒号

java - 如何检查 C++ 源代码中是否有任何系统/shell 调用?

linux - UNIX,如何维护目录结构?

shell - 在 UNIX 中删除相同的文件

linux - 系统脚本

linux - 比较 Linux 中两个目录与​​第三个目录中文件的存在情况

java - 在外部应用程序完全运行时获取通知 - Java