You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
406 B

  1. # ~/.profile: executed by the command interpreter for login shells.
  2. # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
  3. # exists.
  4. # redirect bash to .bashrc (for `screen`)
  5. if [ -n "$BASH_VERSION" ]; then
  6. if [ -s "$HOME/.bashrc" ]; then
  7. . "$HOME/.bashrc"
  8. fi
  9. fi
  10. # set PATH so it includes user's private bin if it exists
  11. if [ -d "$HOME/bin" ]; then
  12. export PATH="$HOME/bin:$PATH"
  13. fi