vote up 2 vote down star
1

Is there a way with Grep to use the -v switch to ignore a line and the next number of lines after it. Its basically to filter exceptions from a log file i.e.

Valid log entry 1
Exception exceptionname
    at a.b.c
    at d.e.f
    ...
Valid log entry 2

grep it to produce :

Valid log entry 1
Valid log entry 2

I have tried grep -v Exception -A 2

but this doesn't work.

Any ideas would be appreciated.

flag
The -v doesn't invert the -A, just the match – dave Sep 29 at 11:34
1  
With this simplistic example, it sure seems easier to grep for what you DO want instead of eliminating what you don't want: grep Valid – glenn jackman Sep 29 at 13:21

4 Answers

vote up 2 vote down

Try awk:

awk -v nlines=2 '/^Exception/ {for (i=0; i<nlines; i++) {getline}; next} 1'
link|flag
vote up 1 vote down

In your case, you might tell grep to also ignore any lines that contain leading whitespace:

grep -v 'Exception|^\s'
link|flag
vote up 1 vote down
sed -n '/^Exception/,+2!p' filename
link|flag
vote up 0 vote down

Can do something like this in a Perl one-liner:

perl -pe 'if (/Exception/) {$_=<> for 1..2; $_="--\n"}' filename

This will replace any line that matches "Exception" and the following two lines with a line with two dashes.

link|flag

Your Answer

Get an OpenID
or

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