I know how to use grep to output a line that matches a string. But what if I also want to output one line above every line containing a matching string, how do I do that?
1 Answer
do the following
grep -B 1 text_to_search_for file.txt 2 I know how to use grep to output a line that matches a string. But what if I also want to output one line above every line containing a matching string, how do I do that?
do the following
grep -B 1 text_to_search_for file.txt 2