参见英文答案 >
How to reload .bash_profile from the command line?14个
我经常需要对〜/ .bash_profile进行更改,我必须重新启动终端才能传播更改.是否有任何命令我可以运行来重新提供我的〜/ .bash_profile?
我经常需要对〜/ .bash_profile进行更改,我必须重新启动终端才能传播更改.是否有任何命令我可以运行来重新提供我的〜/ .bash_profile?
是的,你可以运行:
原文链接:https://www.f2er.com/bash/383479.htmlsource ~/.bash_profile
要么:
. ~/.bash_profile
这将重新加载/重新获取当前shell中的.bash_profile.
为方便起见,我将此命令放在〜/ .bash_profile中:
alias reprofile='source ~/.bash_profile'
然后我只需输入reprofile或repro TAB.