Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我通过单个文件获取了一堆 .sh 文件
源 .bash_profile
现在,我想使用另一个安装。在采购其他 .sh 文件之前,如何取消采购它们?甚至可能吗?
没有源历史记录使您能够做到这一点。
如果您想在获取某些文件的同时运行某些命令,您可以在新的 shell 中运行它们。说:
sh -c "source your-env.sh; some-command.sh"