~ park3r /.bashrc

I prefer colorized output so you have to install grc to see it correctly working. Additionaly there is cw installed.
################
# .bashr for park3r

# Enable colors for ls, etc. prefer ~/.dir_colors #64489
if [[ -f ~/.dir_colors ]]; then
        eval `dircolors -b ~/.dir_colors`
else
        eval `dircolors -b /etc/DIR_COLORS`
fi

# History size
export HISTSIZE=1023
export HISTFILESIZE=1023
export HISTIGNORE="ls*:fg"
export HISTCONTROL=ignoredups

# Aliases
alias ls="ls --color=auto"
alias ll="ls -l"
alias la="ls -a"
alias lsd="ll | grep ^d"
alias svn="colorsvn"
alias ncmpc="ncmpc -c"
alias cl='/usr/bin/grc -es --colour=auto'
alias configure='cl ./configure'
alias diff='cl diff'
alias make='cl make'
alias gcc='cl gcc'
alias g++='cl g++'
alias cvs='cl cvs'
alias as='cl as'
alias gas='cl gas'
alias ld='cl ld'
alias netstat='cl netstat'
alias ping='cl ping'
alias traceroute='cl /usr/sbin/traceroute'
alias tail='cl tail'

# Terminal title 
case $TERM in
        xterm*|rxvt*|Eterm|aterm)
        PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
                ;;
        screen)
        PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\033\\"'
                ;;
esac

# Paths for various apps
#LD_LIBRARY_PATH=/lib:$LD_LIBRARY_PATH
#export PATH="/usr/lib/ccache/bin:/usr/lib/distcc/bin:${PATH}"
export CCACHE_DIR="/var/tmp/ccache"
export DISTCC_DIR="/var/tmp/portage/.distcc/"
export LD_LIBRARY_PATH="/usr/lib/"

# Check for local mail
MAILCHECK=30
MAILPATH=~/.maildir/new?"You have a new mail. Read it with mutt."  
Your Ad Here