Skip to content

Instantly share code, notes, and snippets.

@benyarb
Created May 15, 2012 21:20
Show Gist options
  • Save benyarb/2705237 to your computer and use it in GitHub Desktop.
Save benyarb/2705237 to your computer and use it in GitHub Desktop.
Import .bashrc into .bash_profile
# ~/.bash_profile
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
@BlueHoopor
Copy link

[[ -s "$HOME/.bashrc" ]] && source "$HOME/.bashrc"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment