Skip to content

Instantly share code, notes, and snippets.

@uasi
Created May 3, 2011 17:12
Show Gist options
  • Save uasi/953741 to your computer and use it in GitHub Desktop.
Save uasi/953741 to your computer and use it in GitHub Desktop.
Zsh command abbreviation
local grepish
if which ack &> /dev/null; then
grepish=ack
else
grepish=grep
fi
typeset -A abbreviations
abbreviations=(
" G" " | $grepish"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment