Commit 775ac3ad authored by Bin Huang's avatar Bin Huang
Browse files

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

parent 3ea33841
...@@ -18,7 +18,12 @@ alias _='sudo' ...@@ -18,7 +18,12 @@ alias _='sudo'
alias please='sudo' alias please='sudo'
## more intelligent acking for ubuntu users ## 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 # only define LC_CTYPE if undefined
if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment