¿Cómo se hace grep de un archivo y se obtienen las siguientes 5 líneas?


Respuestas:


216

Usted quiere:

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
Wow wow wow. Un millón de gracias.
PhillipMwaniki

Sería genial si hubiera una manera de no limitar la salida a una cierta cantidad de líneas, sino imprimir todas las líneas después de la coincidente.
Matthias Braun

4

Alguna awkversión.

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

Cuando encuentre el patrón, establezca c=5
Si ces verdadero, imprima y disminuya el número dec


2

Aquí hay una solución sed:

sed '/19:55/{
N
N
N
N
N
s/\n/ /g
}' file.txt
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.