gpt4 book ai didi

linux - 在不同文件中收集 .bashrc 中定义的命令

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:06:07 26 4
gpt4 key购买 nike

我想将 .bashrc 中定义的命令收集到不同的文件中,例如:

文件PartOne.sh:

commandOne1(){...}
commandOne2(){...}
...

filePartTwo.sh:

commandTwo1(){...}
commandTwo2(){...}
...

然后将它们“包含”在 .bashrc 中:

"include"{filePartOne.sh}
"include"{filePartTwo.sh}
...

这样我就可以像在 .bashrc 文件中一样使用它们。 可能吗?

最佳答案

您可以在 .bashrc 文件中使用命令源

例如,如果您有 commandOne.sh 和 commandTwo.sh:

你的.bashrc

source commandOne.sh
source commandTwo.sh

它将在与运行 .bashrc 的 shell 相同的 shell 中执行文件。

关于linux - 在不同文件中收集 .bashrc 中定义的命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40719397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com