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

前端之家收集整理的这篇文章主要介绍了有没有办法通过bash_profile“资源”而无需重启终端?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to reload .bash_profile from the command line?14个
我经常需要对〜/ .bash_profile进行更改,我必须重新启动终端才能传播更改.是否有任何命令我可以运行来重新提供我的〜/ .bash_profile?
是的,你可以运行:
source ~/.bash_profile

要么:

. ~/.bash_profile

这将重新加载/重新获取当前shell中的.bash_profile.

为方便起见,我将此命令放在〜/ .bash_profile中:

alias reprofile='source ~/.bash_profile'

然后我只需输入reprofile或repro TAB.

原文链接:https://www.f2er.com/bash/383479.html

猜你在找的Bash相关文章