我有一个 shell 脚本项目,我想从项目文件夹加载 .*rc。
在 zsh 中,我可以通过从当前文件ZDOTDIR=$PWD zsh
夹加载来实现这一点。.zshrc
我怎样才能在 Bash 中做同样的事情?
答案1
使用 --rcfile 选项启动 bash
bash --rcfile ./project/bashrc
我有一个 shell 脚本项目,我想从项目文件夹加载 .*rc。
在 zsh 中,我可以通过从当前文件ZDOTDIR=$PWD zsh
夹加载来实现这一点。.zshrc
我怎样才能在 Bash 中做同样的事情?
使用 --rcfile 选项启动 bash
bash --rcfile ./project/bashrc