Skip to content

Instantly share code, notes, and snippets.

@matteomelani
Created October 21, 2018 00:21
Show Gist options
  • Save matteomelani/bd38257f9827840307d45f34b02f7975 to your computer and use it in GitHub Desktop.
Save matteomelani/bd38257f9827840307d45f34b02f7975 to your computer and use it in GitHub Desktop.
Basic bash_profile file
### .bash_profile is invoked when you start a login shell (type login name and password)
### .bashrc is invoked for non-login interactive shell
### This allows to consolidate all the commands in the .bashrc
if [ -f $HOME/.bashrc ]; then
source $HOME/.bashrc
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment