.bash_profile 161 B

12345678
  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;