“Как напечатать следующие строки с Grep” Ответ

Как напечатать следующие строки с 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

Печать в следующих 10 строках после 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

Как напечатать следующие строки с 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

Как напечатать следующие строки с 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

Ответы похожие на “Как напечатать следующие строки с Grep”

Вопросы похожие на “Как напечатать следующие строки с Grep”

Больше похожих ответов на “Как напечатать следующие строки с Grep” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования