7deae3d4c92fd0fc2c6bd1c6a9d8e3dddef2a424
David Blume first commit

David Blume authored 9 years ago

1) # ~/.bash_profile: executed by bash for login shells.
2) 
David Blume Add a few c++ aliases, and...

David Blume authored 8 years ago

3) # Source global definitions
4) if [ -f /etc/bashrc ]; then
5)     # Macintosh (Darwin) and Fedora / Red Hat
6)     . /etc/bashrc
7) elif [ -f /etc/bash.bashrc ]; then
8)     # Raspberry Pi / Debian and Cygwin
9)     . /etc/bash.bashrc
David Blume first commit

David Blume authored 9 years ago

10) fi
11) 
David Blume Add a few c++ aliases, and...

David Blume authored 8 years ago

12) # source the user's bashrc if it exists
13) if [ -f "${HOME}/.bashrc" ]; then
14)     source "${HOME}/.bashrc"