Hacker News new | ask | show | jobs
by tomsthumb 3191 days ago
why bother with git grep vs. just vanilla grep. i could see the use if you're working with an older binary, but you didn't mention.
1 comments

If you ran something like grep -r SYSCALL_DEFINE.read from the top level of the linux source it would search through not just your source code, but also all of the artifacts of building the kernel. Basically, git grep is faster in this case because it filters the searched files down to only ones that are checked in. You could achieve a similar effect with standard tools like this: find -type f -regex '.\.[hc]' | xargs grep 'SYSCALL_DEFINE.*read'

    grep -r --include='*.[hc]' 'SYSCALL_DEFINE.*read'
Nice. I hadn't used --include before.
See also: programmer's grep clones. https://beyondgrep.com/more-tools/#Other%20grep-like%20tools

They work fine even where git-grep is not an option. Example:

    ack 'SYSCALL_DEFINE.*read'