.bash_profile 156 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. test -t 0 && . "$HOME/.bashrc"