如何使用 .bash_profile 从不同文件夹加载 Bash

如何使用 .bash_profile 从不同文件夹加载 Bash

我有一个 shell 脚本项目,我想从项目文件夹加载 .*rc。

在 zsh 中,我可以通过从当前文件ZDOTDIR=$PWD zsh夹加载来实现这一点。.zshrc

我怎样才能在 Bash 中做同样的事情?

答案1

使用 --rcfile 选项启动 bash

bash --rcfile ./project/bashrc

相关内容