]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - bin/git-ack
.ackrc: Tweak colors, group by filename
[dotfiles.git] / bin / git-ack
1 #!/bin/sh
2 # Usage: git-ack PATTERN
3 # ack-based replacement for "git grep ...". Look for specified patterns in the
4 # tracked files in the work tree.
5
6 git ls-files -z | xargs -0 ack $*