“Segunda partida de Grep” Respostas de código

Segunda partida de Grep

#Combine grep and tail for grepping until second match and filtering 
#last with tail command
grep -m2 "two" in-file.txt | tail -n1
Armandres

Grep Primeira partida

Just combine grep with head command for filtering  only the first match as:
grep "match" | head -n 1   #Change 1 to not only match first but further matches
Armandres

Respostas semelhantes a “Segunda partida de Grep”

Perguntas semelhantes a “Segunda partida de Grep”

Mais respostas relacionadas para “Segunda partida de Grep” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código