.bash_profile 170 B

1234567
  1. #!/bin/bash
  2. # add local bin to path
  3. export PATH=/usr/local/bin:$PATH
  4. # if bashrc exists and the terminal has stdin load it
  5. [ -f ~/.bashrc ] && test -t 0 && . ~/.bashrc