If you need to repeatedly run a command like:
source ~/.bash_profile source ~/.zshrc
you can create aliases for these command in ~/.bash_profile and source ~/.zshrc:
~/.bash_profile
source ~/.zshrc
alias sb='source ~/.bash_profile' alias sz='source ~/.zshrc'