bash_profile 216 B

12345678910
  1. if [ -f $HOME/.bashrc ]; then
  2. source $HOME/.bashrc
  3. fi
  4. # load all files from .shell/login.d directory
  5. if [ -d $HOME/.shellrc/login.d ]; then
  6. for file in $HOME/.shellrc/login.d/*.sh; do
  7. source $file
  8. done
  9. fi