“Grep zweites Match” Code-Antworten

Grep zweites Match

#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 erstes Match

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

Ähnliche Antworten wie “Grep zweites Match”

Fragen ähnlich wie “Grep zweites Match”

Weitere verwandte Antworten zu “Grep zweites Match” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen