Is there a way to “resource” by bash_profile without restarting terminal?
本问题已经有最佳答案,请猛点这里访问。
我经常必须对我的
是的,您只需运行:
1 | source ~/.bash_profile |
或:
1 | . ~/.bash_profile |
这将在当前shell中重新加载/重新提供
为了方便起见,我把这个命令放在我的
1 | alias reprofile='source ~/.bash_profile' |
然后我只输入