“Grep Drugi mecz” Kod odpowiedzi

Grep Drugi mecz

#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 pierwszy mecz

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

Odpowiedzi podobne do “Grep Drugi mecz”

Pytania podobne do “Grep Drugi mecz”

Więcej pokrewnych odpowiedzi na “Grep Drugi mecz” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu