“Deuxième match Grep” Réponses codées

Deuxième match 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

premier match grep

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

Réponses similaires à “Deuxième match Grep”

Questions similaires à “Deuxième match Grep”

Plus de réponses similaires à “Deuxième match Grep” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code