I'd like to gather the commands, defined in .bashrc, in different files like:
filePartOne.sh:
commandOne1(){...}
commandOne2(){...}
...
filePartTwo.sh:
commandTwo1(){...}
commandTwo2(){...}
...
and then "include" them with something like this in .bashrc:
"include"{filePartOne.sh}
"include"{filePartTwo.sh}
...
so I could use them as if they were in the .bashrc file. Is it possible?