Skip to content

Instantly share code, notes, and snippets.

@yachi
Created September 30, 2013 04:45
Show Gist options
  • Save yachi/6759466 to your computer and use it in GitHub Desktop.
Save yachi/6759466 to your computer and use it in GitHub Desktop.
bundle grep, similar to git grep but for gems in Gemfile
# grep -r "$@" `bundle show --paths`
# ack "$@" `bundle show --paths`
function bung(){
ag "$@" `bundle show --paths`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment