我的.bash_profile
如下:
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/.local/bin:$HOME/bin:/home/user/condor/bin:/home/user/merlin/bin
export PATH
我刚刚将:/home/user/merlin/bin
添加到了PATH
但是,当我回显$ PATH时,我看到以下内容:
/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/home/user/scoleman/bin:/home/scoleman/bin:/home/user/.local/bin:/home/user/bin:/home/user/condor/bin:/home/user/scoleman/bin:/home/scoleman/bin
我看不到添加的新路径(:/home/user/merlin/bin
),它也与我的.bash_profile中的内容不同
最终,我正在尝试添加以下新项目路径:
:/home/user/merlin/bin/strats/
但是我现在不确定应该在哪里添加新路径,或者在将新路径添加到.bash_profile中之后是否应该做些什么?
有人可以让我知道为什么.bash_profile脚本与回显$ PATH相比为什么具有不同的路径集。
谢谢