Skip to content

Instantly share code, notes, and snippets.

@uu59
Created March 23, 2016 09:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uu59/fc6a72dd11aec1dec3f8 to your computer and use it in GitHub Desktop.
Save uu59/fc6a72dd11aec1dec3f8 to your computer and use it in GitHub Desktop.
#!/bin/bash
#vim:set ft=bash:
set -u
ghq-grep() {
for repo in $(ghq list); do
echo $repo:
(cd "$(ghq root)/$repo" && PAGER= git grep --full-name "$@")
echo
done
}
ghq-grep "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment