如何从命令行重新加载文件.bash_profile ?
通过退出并重新登录,我可以让shell识别对.bash_profile的更改,但我希望能够按需执行。
如何从命令行重新加载文件.bash_profile ?
通过退出并重新登录,我可以让shell识别对.bash_profile的更改,但我希望能够按需执行。
当前回答
Use
alias reload!=". ~/.bash_profile"
或者如果想通过函数添加日志:
function reload! () {
echo "Reloading bash profile...!"
source ~/.bash_profile
echo "Reloaded!!!"
}
其他回答
只需输入source ~/.bash_profile。
或者,如果你喜欢节省按键,你也可以打字。~ / . bash_profile。
我正在运行macOS v10.12 (Sierra),并为此工作了一段时间(尝试了所有推荐的解决方案)。我感到困惑,所以我最终尝试重新启动我的电脑!它工作。
我的结论是,有时硬重置是必要的。
添加别名bashs="source ~/ "。bash_profile”到Bash文件中。
所以下次你可以调用bash。
我使用Debian,我可以简单地键入exec bash来实现这一点。我不能说它是否适用于所有其他发行版。
如果.bash_profile文件不存在,可以尝试执行以下命令:
. ~/.bashrc
or
source ~/.bashrc
而不是。bash_profile。
您可以找到关于bashrc的更多信息。