有没有办法在不重新启动终端的情况下通过 bash_profile “资源”? [复制]
Posted
技术标签:
【中文标题】有没有办法在不重新启动终端的情况下通过 bash_profile “资源”? [复制]【英文标题】:Is there a way to "resource" by bash_profile without restarting terminal? [duplicate] 【发布时间】:2016-11-12 20:37:35 【问题描述】:我经常不得不对我的~/.bash_profile
进行更改,并且我必须重新启动终端才能传播更改。我可以运行任何命令来重新获取~/.bash_profile
的资源吗?
【问题讨论】:
类似$ source ~/.bash_profile
?
【参考方案1】:
是的,你可以运行:
source ~/.bash_profile
或者:
. ~/.bash_profile
这将在当前 shell 中重新加载/重新获取 .bash_profile
。
为方便起见,我将此命令放在我的~/.bash_profile
中:
alias reprofile='source ~/.bash_profile'
然后我只需输入reprofile
或repro
TAB。
【讨论】:
以上是关于有没有办法在不重新启动终端的情况下通过 bash_profile “资源”? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法在不重新启动 Xcode 6 的情况下打开 Swift Playground?
有没有办法在不重新启动 Solr 服务器的情况下动态更新同义词文件?
有没有办法在不重新启动应用程序的情况下使 NSBundle 本地化缓存失效? [iOS]