# 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 # Some example alias instructions alias vi='vim' alias less='less -r' alias rm='rm -i' alias where='type -a' alias ls='ls -F --color=tty' alias dir='ls --color=auto --format=vertical' alias vdir='ls --color=auto --format=long' alias ll='ls -l' alias la='ls -A' alias l='ls -CF' # alias l.='ls -d .* --color=tty' 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' # Some example functions # function settitle() { echo -n "^[]2;$@^G^[]1;$@^G"; }