I would like to grep for a string, but show the preceding 5 lines and following 5 lines as well as the matched line. I'm scanning for errors in a logfile, and want to see the context.
Any clues for the clueless?
|
|
|
For BSD or GNU grep you can use
If you want the same amount of lines before and after you can use
This will show 3 lines before and 3 lines after. |
|||||||||||||||||||
|
|
|
|||||
|
|
Ack works with similar arguments than grep, and accept -C. But it's usually better for searching through code. |
|||
|
|
awk can do this:
|
|||||||||||
|
|
I normally use
Many of the tools like grep also have really great man files too. I find myself referring to grep's man page a lot because there is so much you can do with it.
Many GNU tools also have an info page that may have more useful information in addition to the man page.
|
||||
|
|
That will grep "myfile" for "astring", and show 5 lines before and after each match |
|||
|
|
|
I keep a copy of Brendan Gregg's perl script around for this purpose. Works well. |
|||
|
|