Commit 2d9df446 authored by Jeff Smith's avatar Jeff Smith
Browse files

Fix 'ack-grep' bug for non-ubuntu users

Redirect STDERR along with STDOUT when looking for ack-grep
parent 920ab071
......@@ -22,7 +22,7 @@ alias _='sudo'
alias please='sudo'
## more intelligent acking for ubuntu users
if which ack-grep > /dev/null;
if which ack-grep &> /dev/null;
then
alias afind='ack-grep -il'
else
......
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