add support for locate (glocate) on solaris

This commit is contained in:
David Alexander Majnemer 2008-11-25 18:11:50 -06:00
parent d7e92471ff
commit 395d54464f

4
zshrc
View file

@ -110,6 +110,10 @@ case `uname -s` in
if (which ggrep &> /dev/null) ; then
alias grep='ggrep -d skip --color=auto'
fi
if (which glocate &> /dev/null) ; then
alias locate='glocate'
fi
;;
esac