vote up 2 vote down star
1

I'm using grep from the command line via cygwin. I'm wondering if there's any way to get it to highlight the part of each line that matches the regex. The closest thing I'm seeing is the -o option, but that only outputs the matching area, and I'd like to see the entire line.

flag

3 Answers

vote up 10 vote down check

Take a look at the --color (or --colour) option, e.g.

grep --color POST access_log

By default, this uses the "auto" mode which only includes the color codes when output to a terminal, but not when you pipe the output elsewhere. If you want the colors piped out to something other than stdout, then use --color=always

See the linked article for ways you can change the colour and make grep use this option by default.

link|flag
2  
I added the --color=always, but that seems to break the chained greps, probably because the color control chars are being picked up by the regexes. The fix I came up with was to just repeat the first grep in the chain at the very end, with the --color option. I lose the coloring of the file names, but it still colors the match, which is the important part. – Herms May 12 at 14:46
vote up 7 vote down

Try the --color switch.

link|flag
Wow. now sure how I missed that. One extra question. Is there any way to maintain the color when chaining greps? I have one grep to search, piped to a second one to filter out some matches I don't want to see. Any way to maintain the color from the first grep? – Herms May 12 at 14:36
I have updated my answer with a possible way you could do that. – Paul Dixon May 12 at 14:40
vote up 1 vote down

You might want to try the ack tool. It does the highlighting by default, iirc.

Actually, it does many usefull things by default. Some people like it and I hope You will too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.