fc19c7b34f522f3f22a32418c9da55df6b9b5f0e
David Blume first commit

David Blume authored 8 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) if [ -f "${HOME}/.bashrc" ]; then
4)     source "${HOME}/.bashrc"
David Blume first commit

David Blume authored 8 years ago

5) fi
dblume Bash completion on macOS fo...

dblume authored 2 years ago

6) if [[ $(uname -s) == Darwin* ]]; then
7)     if [[ -n $ITERM_PROFILE && -z $SSH_CLIENT && -f "${HOME}/tips.txt" ]]; then
8)         cat "${HOME}/tips.txt"
9)     fi
dblume Check for .:/Users/david be...

dblume authored 2 years ago

10)     if [[ -n $CDPATH && -f $(brew --prefix)/etc/bash_completion ]]; then
11)         # brew install bash-completion (for $CDPATH completion)
dblume Bash completion on macOS fo...

dblume authored 2 years ago

12)         source $(brew --prefix)/etc/bash_completion
13)     fi
dblume Use default names in macOS...

dblume authored 1 year ago

14)     if [[ -f $(brew --prefix)/bin/ctags ]]; then
15)         alias ctags="$(brew --prefix)/bin/ctags"
16)     fi
17)     # Set default names for GNU grep, sed and find
18)     PATH="/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/gnu-sed/libexec/gnubin:/usr/local/opt/findutils/libexec/gnubin:$PATH"