Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
grep a file, but show several surrounding lines?

I have to parse a very large file and I want to use the command grep (or any other tool).

I want to search each log line for the word FAILED, then print the line above and below each matching line, as well as the matching line.

For example:

id : 15
Satus : SUCESS
Message : no problem

id : 15
Satus : FAILED
Message : connection error

And I need to print:

id : 15
Satus : FAILED
Message : connection error
share|improve this question

marked as duplicate by Michael Myers Mar 18 '11 at 22:53

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 26 down vote accepted

grep's -A 1 option will give you one life after; -B 1 will give you one line before; and -C 1 combines both to give you one line both before and after.

share|improve this answer
1  
+1, I forgot about -C (lines of context) – Milan Babuškov Jul 2 '09 at 7:10

Use -B and -A option

grep --help
...
-B, --before-context=NUM  print NUM lines of leading context
-A, --after-context=NUM   print NUM lines of trailing context
...
share|improve this answer

Use -A and -B switches (mean lines-after and lines-before):

grep -A 1 -B 1 FAILED file.txt
share|improve this answer

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