Just a quick tip for those on Macs who use bash. By default, your .bashrc file will not be source’ed when you open up a new terminal. To change that, add this to your .profile file:
if [ -f ~/.bashrc ]; then . ~/.bashrc fi
Just a quick tip for those on Macs who use bash. By default, your .bashrc file will not be source’ed when you open up a new terminal. To change that, add this to your .profile file:
if [ -f ~/.bashrc ]; then . ~/.bashrc fi