Skip to content

Instantly share code, notes, and snippets.

@bcomnes
Created September 24, 2013 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcomnes/6691304 to your computer and use it in GitHub Desktop.
Save bcomnes/6691304 to your computer and use it in GitHub Desktop.
Enable .bashrc from .bash_profile Paste this into your .bash_profile to source .bashrc in login shells
# Enable .bashrc
# If running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment