我想收集.bashrc中定义的命令,如:
filePartOne.sh:
commandOne1(){...}
commandOne2(){...}
...
filePartTwo.sh:
commandTwo1(){...}
commandTwo2(){...}
...
然后在.bashrc中使用类似的东西“包含”它们:
"include"{filePartOne.sh}
"include"{filePartTwo.sh}
...
所以我可以像使用.bashrc文件一样使用它们。 有可能吗?
答案 0 :(得分:3)
您可以在.bashrc文件中使用命令源
示例,如果您有commandOne.sh和commandTwo.sh:
你的.bashrc
source commandOne.sh
source commandTwo.sh
它将在运行.bashrc的shell中执行该文件。