Guest User

Untitled

a guest
Oct 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ### .bash_profile is invoked when you start a login shell (type login name and password)
  2. ### .bashrc is invoked for non-login interactive shell
  3. ### This allows to consolidate all the commands in the .bashrc
  4. if [ -f $HOME/.bashrc ]; then
  5. source $HOME/.bashrc
  6. fi
Add Comment
Please, Sign In to add comment