~ ghurley /.bashrc

# .bashrc

# User specific aliases and functions

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

## linux stuff ####################
alias ll='ls -lFh --color=auto'
alias la='ls -A1Fh --color=auto'
alias l.='ls -AlFh --color=auto'
alias l='ls -lFh --color=auto'

## global stuff ###################
alias less='less -r'

export P4CONFIG=.p4config
export P4DIFF=diff
export P4DIFFOPTS=-ub
export P4EDITOR=emacs

shopt -s histappend                    # shells append to history, don't overwrite
export PROMPT_COMMAND='history -a'     # flush history to file on each command

alias emacs='emacs -nw'
alias sql='mysql --user appdev -p615battery'
alias saw=/home/logs/sawmill/bin/saw
alias hg='history | egrep'

PS1="\[\033[0;32m\][\t]\h:\[\033[0;33m\]\w\n%\[\033[0;37;00m\] "