How to search text files for patterns efficiently

Last updated on December 9, 2020 by Dan Nanni

For a system admin or a programmer, grep and the likes are probably the most popular tools when it comes to searching through complex configuration directories and large trees of source code for a particular text string or pattern.

If grep is one of your favorite tools, chances are that you will like ack even more. ack is a Perl-based command-line utility similar to grep, but designed to improve the search speed and capabilities of grep. Especially if you are a programmer, I strongly recommend replacing grep with ack. The usage of ack is heavily optimized for code search, so a programmer like you can perform complex search on source code trees with fewer keystrokes.

Features of ack

To highlight some of the powerful features of ack:

As for search speed, ack is generally faster than grep. The speed of ack comes from its built-in file type filters; ack maintains a list of recognizable file types, and skips unknown/unnecessary file types during search. It also avoids inspecting superfluous metadata directories.

Install ack on Linux

While ack is available as a standard package on major Linux distros (e.g., ack-grep package on Debian-based system, and ack package for Redhat-based system), the version of ack shipped with the distros still remains 1.x, while ack 2.0 with more features has already become available.

So I am going to download and install ack from the official site.

Conveniently, ack is available as a single-file Perl script from the official site, which incorporates all dependent Perl modules in it. So you don't need to install any extra Perl modules to run the script.

To intall ack on your Linux system, go to the official site to download the latest ack.

$ wget http://beyondgrep.com/ack-2.12-single-file
$ sudo mv ack-2.12-single-file /usr/local/bin/ack
$ sudo chmod 0755 /usr/local/bin/ack

Note that on Debian-based systems, there is a separate package, also called ack (Kanji code converter). So if you happen to use that package, you will have to rename ack to avoid naming conflicts.

Usage Examples of ack

1. Search for "eat" as a word recursively from the current directory. Things like "feature" or "eating" will not be matched.

$ ack -w eat

2. Search for a string with special characters: '$path=.' All metacharacters (e.g., '$' or '.') need to be matched as a literal.

$ ack -Q '$path=.' /etc

3. Search for 'about' in all directories other than 'downloads' directory.

$ ack about --ignore-dir=downloads

4. Search only PHP files which contain 'protected'. Then group search results by file name, and print file name for each search group.

$ ack --php --group protected

5. Get a list of the names of Makefiles which contain 'CFLAG'. The files named *.mk, makefile, Makefile, GNUmakefile will all be considered.

$ ack --make -l CFLAG

6. Highlight a matched string while still showing the entire (growing) log file.

$ tail -f /var/log/syslog | ack --passthru 192.168.1.10

To get a list of filetypes recognized by ack for filtering, run the following:

$ ack --help-type

Support Xmodulo

This website is made possible by minimal ads and your gracious donation via PayPal or credit card

Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.

Xmodulo © 2021 ‒ AboutWrite for UsFeed ‒ Powered by DigitalOcean