关于bash:有没有办法通过bash_profile“资源”而无需重启终端?

Is there a way to “resource” by bash_profile without restarting terminal?

本问题已经有最佳答案,请猛点这里访问。

我经常必须对我的~/.bash_profile进行更改,并且必须重新启动终端才能传播更改。我可以运行任何命令来重新获取我的~/.bash_profile的源代码吗?


是的,您只需运行:

1
source ~/.bash_profile

或:

1
. ~/.bash_profile

这将在当前shell中重新加载/重新提供.bash_profile

为了方便起见,我把这个命令放在我的~/.bash_profile中:

1
alias reprofile='source ~/.bash_profile'

然后我只输入reprofilereprotabkbbkbd。