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.

12 lines
211 B

  1. # $HOME/bin
  2. #
  3. if [ -d "$HOME/bin" ]; then
  4. export PATH="$HOME/bin:$PATH"
  5. fi
  6. # redirect bash to .bashrc (for `screen`)
  7. if [ -n "$BASH_VERSION" ]; then
  8. if [ -s "$HOME/.bashrc" ]; then
  9. . "$HOME/.bashrc"
  10. fi
  11. fi