使用.bash_profile和.bashrc作为一个

时间:2017-08-13 16:29:26

标签: bash

我的.bash_profile中有以下代码:

  1 [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"                                                                                           
  2                                                                                                                                                           
  3 export NVM_DIR="$HOME/.nvm"                                                                                                                               
  4 [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm                                                                                        
  5 [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"  # This loads nvm bash_completion 

以下是我的.bashrc:

  1 # Add RVM to PATH for scripting. Make sure this is the last PATH variable change.                                                                         
  2 export PATH="$PATH:$HOME/.rvm/bin"

有没有办法避免其中一个文件?我的意思是,只使用一个作为两个?

谢谢。

1 个答案:

答案 0 :(得分:2)

将以下代码放在.bash_profile文件中。基本上是.bash_profile中的.bashrc文件。

source .bashrc