AckMate
Mac: andrew$ time rg 'Bruce Springsteen' foo.jsonl -no-mmap /dev/null real 0m0.445s user 0m0.170s sys 0m0.274s If I do this on my Linux machine on the same file, I get timings of 0.275s for rg, 0.398s for rg with no memory maps (opposite direction for Mac) and 0.708s for GNU grep (v 2.25). Benchmarks are fun, eh? Well, many apps use the installed native grep tool to function. For example, a wide array of geeklets will often rely on grep to fetch data from large text files or harvested websites. Thus, all your grep-using geeklets will now be several times faster in their greppy parts. Install gnu grep on mac osx One thing that bugs me about the bsd grep that comes with mac osx is that it doesn't offer you the -P flag. The -P flag will let you use the pcre engine in your regex matches, which is 100x more awesome than using the posix regex of egrep.
Users of TextMate, the programmer's editor for the Mac, can use the AckMate plugin by Trevor Squires:
TextMate users know just how slow its 'Find in Project' can be with large source trees. That's why you need 'ack-in-project' — a TextMate bundle that uses the super-speedy 'ack' tool to search your code FAST. It gives you beautiful, clickable results just as fast as 'ack' can find them. Check it out at: https://github.com/protocool/ackmate
ack.vim
ack.vim provides an interface between ack and vim. For example, you can call :Ack foo
, which will run ack and load ack's results into a vim buffer for manipulation and navigation.
ack.vim is available at the official vim website at https://www.vim.org/scripts/script.php?script_id=2572
ack2vim
ack2vim eases the interface beween ack and vim, so that ack's findings can be found with vim as well.
Emacs integration
There are at least four different Emacs modes for supporting ack here at the Emacs Wiki: https://www.emacswiki.org/emacs/Ack
Note: Be careful of any solution that defaults you to using --all, since that option no longer exists in ack 2.
hhighlighter
hhlighter is a wrapper around ack to make it easy to highlight words in a file. Invoke it like
cat file | h foo bar batand each of the three words 'foo', 'bar' and 'bat' will be highlighted as a different color. See https://github.com/paoloantinori/hhighlighter
There are many ways to search source code that are more flexible and tuned to programmers than straight grep
. I suggest you take a look at some of these alternatives, for they may suit your needs better than ack. If you have any suggestions to add to this list, please let me know at andy@petdance.com or submit an issue at https://github.com/petdance/beyondgrep/issues.
ag, the Silver Searcher
Geoff Greer says 'ag is like ack, but better. It's fast. It's damn fast. The only thing faster is stuff that builds indices beforehand, like Exuberant Ctags.' Geoff has also created a fork of AckMate that uses Ag instead of ack.
cgrep
Cgrep is a grep tool suitable for searching in large code repositories. It supports 30 programming languages and searches that go beyond the simple pattern matching. It enables context-aware filtering and semantic searches through wildcard and combinators.
grab
grab is another faster grep alternative that tries to use multiple cores. It also uses parallel processing, mmap and other speedy tricks behind the scenes.
glark
The biggest departure from ack, glark adds many more features like the ability to AND and OR your patterns. It's written in Ruby.
greple
greple is a search tools that lets you search for multiple keywords at a time.
grin
'A grep program configured the way I like it', written in Python by Robert Kern.
kaki
kaki is inspired by ack, and built on top of nodejs.
nak
An implementation of ack, written in Node.js. It has inspiration from Ag, and is optimized for speed, not features. It's completely asynchronous. Written by Garen J. Torikian.
paragrep
paragrep is a text search tool that operates at the paragraph level.
pcregrep
pcregrep looks like it's just a regular grep, but with a PCRE regex engine.
pss
pss is an ack clone written in Python by Eli Bendersky. It's written in pure Python with no additional modules necessary.
pt, the Platinum Searcher
The Platinum Searcher is another code search tool similar to ack and ag. It supports multi platforms and multi encodings.
rak
A straight clone of ack, with some visual tweaks, written in Ruby by Daniel Lucraft.
ripgrep
ripgrep is written in Rust and claims to be 'faster than everything else'.
sift
sift is a search tool written in Go. It claims to be very faster, faster than ag.
spot
spot is a tiny search utility that adapts some of ack's features. It's simple and uses find+grep+awk.
UniversalCodeGrep (ucg)
A fast ack-like search tool that is written in C++ using PCRE and makes use of concurrency.
vack
vack is visual ack for the Mac.
Sometimes when you're looking at a large codebase, it makes sense to see everything as a whole. An indexing tool may help you out.
ctags
ctags is a program almost as old as time itself. When run against a codebase, ctags indexes various elements of the code, such as variables and functions. This lets your editor or other tools use the tags index to jump quickly to that element.
The most common ctags implementation is Exuberant ctags: http://ctags.sourceforge.net/
cscope
Cscope is a developer's tool for browsing source code. Cscope was part of the official AT&T Unix distribution for many years, and has been used to manage projects involving 20 million lines of code. It also can integrate with vim and Emacs.
CodeQuery
CodeQuery indexes and queries C, C++, Java and Python source code. It builds upon the databases of cscope and ctags, mentioned above, and provides a nice GUI tool.Code Search
Russ Cox, the guy that wrote Google's CodeSearch engine, wrote an article about how it worked and released an implementation in Go.
OpenGrok
OpenGrok is a fast and usable source code search and cross reference engine. It helps you search, cross-reference and navigate your source tree.
GNU GLOBAL
Grep Tool For Mac Shortcut
GNU GLOBAL is a source code tagging system that works the same way across diverse environments (emacs, vi, less, bash, web browser, etc). You can locate objects in source files and move there easily. It is similar to ctags or etags but is different from them at the point of independence of any editor.
Grep Tool For Mac Os
beagrep
Beagrep is a combination of a desktop search engine named beagle and grep. Use the search engine first, then use grep on the small subset of possibly matching files, thus it is very fast and useful for code reading in huge source trees.
Hound
Hound provides a centralized web front-end to a regex-searchable text index of multiple Git repositories. It was created by engineers at Etsy to handle searching across codebases.
Not only that, but did you know gnu grep is significantly faster than the default bsd version? Go ahead and read Why is Gnu Grep So fast? where the author of gnu grep himself chimes in to explain why. Lots of nerdy tidbits in there.
You can install gnu grep on your mac very easily using brew. If you don't have brew you can install it following these instructions.
Installing gnu grep:
All done!