Colorized grep -- viewing the entire file with highlighting - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T13:30:10Zhttp://stackoverflow.com/feeds/question/981601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/981601/colorized-grep-viewing-the-entire-file-with-highlighting5Colorized grep -- viewing the entire file with highlightingZack2009-06-11T14:55:29Z2009-07-06T18:39:14Z
<p>I find grep's --color=always flag to be tremendously useful. However, grep only prints lines with matches (unless you ask for context lines). Given that each line it prints has a match, the highlighting doesn't add as much capability as it could.</p>
<p>I'd really like to cat a file and see the entire file with the pattern matches highlighted.</p>
<p>Is there some way I can tell grep to print every line being read regardless of whether there's a match? I know I could write a script to run grep on every line of a file, but I was curious whether this was possible with standard grep.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/981601/colorized-grep-viewing-the-entire-file-with-highlighting/981826#9818260Answer by nik for Colorized grep -- viewing the entire file with highlightingnik2009-06-11T15:30:24Z2009-06-11T15:30:24Z<p>Ok, this is one way,</p>
<pre><code>wc -l filename
</code></pre>
<p>will give you the line count -- say NN, then you can do</p>
<pre><code>grep -C NN --color=always filename
</code></pre>
http://stackoverflow.com/questions/981601/colorized-grep-viewing-the-entire-file-with-highlighting/981831#98183115Answer by Ryan Oberoi for Colorized grep -- viewing the entire file with highlightingRyan Oberoi2009-06-11T15:30:58Z2009-06-11T15:30:58Z<pre><code>egrep --color "pattern|$" file
</code></pre>
<p>or if you insist on using grep</p>
<pre><code>grep --color -E "pattern|$" file
</code></pre>
http://stackoverflow.com/questions/981601/colorized-grep-viewing-the-entire-file-with-highlighting/981870#9818701Answer by iWerner for Colorized grep -- viewing the entire file with highlightingiWerner2009-06-11T15:38:03Z2009-06-11T15:38:03Z<p>Here is a shell script that uses Awk's gsub function to replace the text you're searching for with the proper escape sequence to display it in bright red:</p>
<pre><code>#! /bin/bash
awk -vstr=$1 'BEGIN{repltext=sprintf("%c[1;31;40m&%c[0m", 0x1B,0x1B);}{gsub(str,repltext); print}' $2
</code></pre>
<p>Use it like so:</p>
<pre><code>$ ./cgrep pattern [file]
</code></pre>
<p>Unfortunately, it doesn't have all the functionality of grep.</p>
<p>For more information , you can refer to an article "<a href="http://www.linuxjournal.com/article/8603" rel="nofollow">So You Like Color</a>" in Linux Journal</p>
http://stackoverflow.com/questions/981601/colorized-grep-viewing-the-entire-file-with-highlighting/984189#9841892Answer by Dennis Williamson for Colorized grep -- viewing the entire file with highlightingDennis Williamson2009-06-11T22:53:21Z2009-06-11T22:53:21Z<p>Here's something along the same lines. Chances are, you'll be using less anyway, so try this:</p>
<pre><code>less -p pattern file
</code></pre>
<p>It will highlight the pattern and jump to the first occurrence of it in the file. </p>
http://stackoverflow.com/questions/981601/colorized-grep-viewing-the-entire-file-with-highlighting/1008663#10086633Answer by ephemient for Colorized grep -- viewing the entire file with highlightingephemient2009-06-17T18:05:04Z2009-06-17T18:05:04Z<p>I'd like to recommend <a href="http://betterthangrep.com/" rel="nofollow">ack -- better than grep, a power search tool for programmers</a>.</p>
<pre>
$ ack --color --passthru --pager="${PAGER:-less -R}" pattern files
</pre>
<pre>
$ ack --color --passthru pattern files | less -R
</pre>
<pre>
$ export ACK_PAGER_COLOR="${PAGER:-less -R}"
$ ack --passthru pattern files
</pre>
<p>I love it because it defaults to recursive searching of directories (and does so much smarter than <code>grep -r</code>), supports full Perl regular expressions (rather than the POSIXish <a href="http://linux.die.net/man/3/regex" rel="nofollow"><code>regex(3)</code></a>), and has a much nicer context display when searching many files.</p>
http://stackoverflow.com/questions/981601/colorized-grep-viewing-the-entire-file-with-highlighting/1056786#10567860Answer by for Colorized grep -- viewing the entire file with highlighting2009-06-29T06:08:10Z2009-06-29T06:08:10Z<p>I use rcg from "Linux Server Hacks", O'Reilly. It's perfect for what you want and can highlight multiple expressions each with different colours.</p>
<h1>!/usr/bin/perl -w</h1>
<p>#</p>
<h1>regexp coloured glasses - from Linux Server Hacks from O'Reilly</h1>
<p>#</p>
<h1>eg .rcg "fatal" "BOLD . YELLOW . ON_WHITE" /var/adm/messages</h1>
<p>#
use strict;
use Term::ANSIColor qw(:constants);</p>
<p>my %target = ( );</p>
<p>while (my $arg = shift) {
my $clr = shift;</p>
<pre><code> if (($arg =~ /^-/) | !$clr) {
print "Usage: rcg [regex] [color] [regex] [color] ...\n";
exit(2);
}
#
# Ugly, lazy, pathetic hack here. [Unquote]
#
$target{$arg} = eval($clr);
</code></pre>
<p>}</p>
<p>my $rst = RESET;</p>
<p>while(<>) {
foreach my $x (keys(%target)) {
s/($x)/$target{$x}$1$rst/g;
}
print
}</p>