如何从命令行重新加载文件.bash_profile ?

通过退出并重新登录,我可以让shell识别对.bash_profile的更改,但我希望能够按需执行。


当前回答

只需输入source ~/.bash_profile。

或者,如果你喜欢节省按键,你也可以打字。~ / . bash_profile。

其他回答

你只需要打字。~ / . bash_profile。

参考“源”做什么?。

如果.bash_profile文件不存在,可以尝试执行以下命令:

. ~/.bashrc

or

source ~/.bashrc

而不是。bash_profile。

您可以找到关于bashrc的更多信息。

保存.bash_profile文件 输入cd进入用户的主目录 使用.bash_profile重新加载配置文件

您还可以使用此命令重新加载~/。该用户的Bash_profile。一定要用破折号。

su - username

简单地重新获取文件不会“重新加载”,即先卸载某些内容,然后再加载。如果这是你想要的,你可以这样做:

hash -r && _SHOW_MESSAGES=1 exec -a -bash bash