Include additional files in .bashrc
Add source /whatever/file
(or . /whatever/file
) into .bashrc
where you want the other file included.
To prevent errors you need to first check to make sure the file exists. Then source the file. Do something like this.
# include .bashrc if it exists
if [ -f $HOME/.bashrc_aliases ]; then
. $HOME/.bashrc_aliases
fi