# User dependent .bashrc file # See man bash for more options... # Don't wait for job termination notification # set -o notify # Don't use ^D to exit set -o ignoreeof # Don't put duplicate lines in the history. export HISTCONTROL=ignoredups # User specific aliases alias vi='vim' alias less='less -r' alias rm='rm -i' alias where='type -a' # alias ls='ls -F' alias ll='ls -l' alias la='ls -A' alias l='ls -CF' # alias l.='ls -d .*' alias cl='clear;pwd;ls' alias lo='exit' alias search="find / -name $1" alias hdu="du -s" alias pl='ps -al' alias pf='ps -f' alias is="ps -Af | grep $1" alias ip='host' # alias ipc='/sbin/ifconfig -a' # alias xterm='xterm -bg white -ls' # alias snapshot="import -window root $1" alias pythonpath='python -c "import sys; print sys.path"' alias maketar='tar -cvzf' # User defined functions # function settitle() { echo -n "^[]2;$@^G^[]1;$@^G"; }