ContextLineControl-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.
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
Respostas:
Você quer:
De
man grep
:fonte
Alguma
awk
versão.Quando o padrão for encontrado, defina
c=5
se
c
for verdadeiro, imprima e diminua o número dec
fonte
Aqui está uma solução sed:
fonte