Further cross-platform tidyups.
[profile.git] / .profile.d / aliases.bashrc
1 # $Id$
2 grep -V 2>/dev/null | grep GNU >/dev/null && alias grep='grep --color=auto'
3 alias knh='kill_known_host'
4 alias l='ls'
5 alias ls='/bin/ls $LS_OPTIONS'
6 if which vim 2>/dev/null | grep ^/ >/dev/null; then
7   alias vim='vim +syn\ on'
8   alias vi='vim'
9 fi
10 alias debug='valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=5 --verbose --time-stamp=yes --track-fds=yes'
11 alias svnfind='find . -type f ! -path "*/.svn/*"'