This post will be related to the use of grep, sed, and awk to process text streams and files.
GREP
Is a command searches a file for lines containing a match to the given strings and prints the matching lines.
It is mainly used in the following combinations:
grep 'some string' given_file cat given_file | grep 'some string' command | grep 'some string'