“Comment imprimer les lignes suivantes avec Grep” Réponses codées

Comment imprimer les lignes suivantes avec Grep

grep -A 2 "searchText" mytext.txt ## next 2 lines after match line
grep -B 2 "seacrchText" mytext.txt ## next 2 lines before match line
grep -C 2 "searchText" mytext.txt ## next 2 lines before and after match line
Kirk-Patrick Brown

Imprimer les 10 lignes suivantes après Grep

grep -A 2 "app" mytext.txt //prints two lines after the match line
grep -B 2 "app" mytext.txt //prints two lines before the match line
Kirk-Patrick Brown

Comment imprimer les lignes suivantes avec Grep

grep -A 2 "searchText" mytext.txt ## next 2 lines after match line
grep -B 2 "seacrchText" mytext.txt ## next 2 lines before match line
grep -C 2 "searchText" mytext.txt ## next 2 lines before and after match line
Kirk-Patrick Brown

Comment imprimer les lignes suivantes avec Grep

grep -A 2 "searchText" mytext.txt ## next 2 lines after match line
grep -B 2 "seacrchText" mytext.txt ## next 2 lines before match line
grep -C 2 "searchText" mytext.txt ## next 2 lines before and after match line
Kirk-Patrick Brown

Réponses similaires à “Comment imprimer les lignes suivantes avec Grep”

Questions similaires à “Comment imprimer les lignes suivantes avec Grep”

Plus de réponses similaires à “Comment imprimer les lignes suivantes avec Grep” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code