.profile 268 B

12345678910111213
  1. # if running bash
  2. if [ -n "$BASH_VERSION" ]; then
  3. # include .bashrc if it exists
  4. if [ -f "$HOME/.bashrc" ]; then
  5. . "$HOME/.bashrc"
  6. fi
  7. fi
  8. # set PATH so it includes user's private bin if it exists
  9. if [ -d "$HOME/bin" ] ; then
  10. PATH="$HOME/bin:$PATH"
  11. fi