Getting OSX to load .bashrc on Terminal start

2013-06-21

OSX doesn’t load bashrc when you open up Terminal.

Add the following to your ~/.bash_profile to get your bashrc scripts working.

[[ -s ~/.bashrc ]] && source ~/.bashrc
I’m currently working on fyra.sh, a CLI-first static site deployment tool where you push your site and it’s served globally through a built-in CDN, without the overhead of heavy platforms.