Usually grep command is used to display the line contaning the specified pattern. Is there any way to display n lines before and after the line which contains the specified pattern?
Can this will be achieved using awk?
|
1
|
|||||||||||||
|
|
|
Yes, use
to include num1 lines of context before the match, and num2 lines of context after the match. EDIT: Seems the OP is using AIX. This has a different set of options which doesn't include -B and -A this link describes grep on AIX 4.3 (it doesn't look promising) Matt's perl script might be a better solution. |
||||||
|
|
|
Sure there is (from the grep man page):
and if you want the same amount of lines before AND after the match, use:
|
||||||||
|
|
|
From the tags, it's likely that the system has a grep that may not support providing context (Solaris is one system that doesn't and I can't remember about AIX). If that is the case, there's a perl script that may help at http://www.sun.com/bigadmin/jsp/descFile.jsp?url=descAll/cgrep%5F%5Fcontext%5Fgrep. |
||
|
|
|
|
If you have sed you could use this shell script
What it does is, grep -n prefixes each match with the line it was found at, the sed strips all but the line it was found at. Then you use head to get the lines up to the line it was found on plus an additional $AFTER lines. That's then piped to tail to just get $BEFORE + $AFTER + 1 lines (that is, your matching line plus the number of lines before and after) |
|||
|
|
|
|
you can use awk
output
|
||||
|