1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

The executable command on Mac OSX is 'ack' rather than 'ack-grep'.

This commit is contained in:
Bin Huang 2015-07-11 09:32:05 +08:00
parent 3ea3384186
commit 775ac3ad9f

View file

@ -18,7 +18,12 @@ alias _='sudo'
alias please='sudo'
## more intelligent acking for ubuntu users
alias afind='ack-grep -il'
if which ack-grep > /dev/null;
then
alias afind='ack-grep -il'
else
alias afind='ack -il'
fi
# only define LC_CTYPE if undefined
if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then