.bash_profile 219 B

123456789
  1. #!/bin/bash
  2. # Source the files in the bash folder
  3. for file in ~/.bash/{shell,commands,prompt,aliases}; do
  4. [ -r "$file" ] && source "$file";
  5. done;
  6. unset file;
  7. [ -f ~/.bash_environment ] && source ~/.bash_environment;