| 12345678910111213141516171819202122232425262728293031323334353637 | if [ -n "$BASH_VERSION" ]; then    # include .bashrc if it exists    if [ -f "$HOME/.bashrc" ]; then. "$HOME/.bashrc"    fifi# set PATHH so it includes user's private bin if it existsif [ -d "$HOME/bin" ] ; then    PATH="$HOME/bin:$PATH"fiPATH=$PATH:~/drush[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function# Colorsexport TERM=xterm-colorexport GREP_OPTIONS='--color=auto' GREP_COLOR='1;32'export CLICOLOR=1 export LSCOLORS=ExGxFxDxCxHxHxCbCeEbEbexport COLOR_NC='\033[0m' # No Colorexport COLOR_WHITE='\033[1;37m'export COLOR_BLACK='\033[0;30m'export COLOR_BLUE='\033[0;34m'export COLOR_LIGHT_BLUE='\033[1;34m'export COLOR_GREEN='\033[0;32m'export COLOR_LIGHT_GREEN='\033[1;32m'export COLOR_CYAN='\033[0;36m'export COLOR_LIGHT_CYAN='\033[1;36m'export COLOR_RED='\033[0;31m'export COLOR_LIGHT_RED='\033[1;31m'export COLOR_PURPLE='\033[0;35m'export COLOR_LIGHT_PURPLE='\033[1;35m'export COLOR_BROWN='\033[0;33m'export COLOR_YELLOW='\033[1;33m'export COLOR_GRAY='\033[1;30m'export COLOR_LIGHT_GRAY='\033[0;37m'
 |