Como você grep um arquivo e obtém as próximas 5 linhas


Respostas:


216

Você quer:

grep -A 5 '19:55' file

De man grep:

Context Line Control

-A NUM, --after-context=NUM

Print NUM lines of trailing context after matching lines.  
Places a line containing a gup separator (described under --group-separator) 
between contiguous groups of matches.  With the -o or --only-matching
option, this has no effect and a warning is given.

-B NUM, --before-context=NUM

Print NUM lines of leading context before matching lines.  
Places a line containing a group separator (described under --group-separator) 
between contiguous groups of matches.  With the -o or --only-matching
option, this has no effect and a warning is given.

-C NUM, -NUM, --context=NUM

Print NUM lines of output context.  Places a line containing a group separator
(described under --group-separator) between contiguous groups of matches.  
With the -o or --only-matching option,  this  has  no effect and a warning
is given.

--group-separator=SEP

Use SEP as a group separator. By default SEP is double hyphen (--).

--no-group-separator

Use empty string as a group separator.

2
Uau uau uau. Obrigado um milhão.
PhillipMwaniki,

Seria ótimo se houvesse uma maneira de não limitar a saída a uma determinada quantidade de linhas, mas imprimir todas as linhas após a correspondência.
Matthias Braun

4

Alguma awkversão.

awk '/19:55/{c=5} c-->0'
awk '/19:55/{c=5} c && c--'

Quando o padrão for encontrado, defina c=5
se cfor verdadeiro, imprima e diminua o número dec


2

Aqui está uma solução sed:

sed '/19:55/{
N
N
N
N
N
s/\n/ /g
}' file.txt
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.