How To search for an string in a file using grep
grep searches the input files for lines containing a match to a given pattern list. When it finds a match in a line, it copies the line to standard output (by default), or does whatever other sort of output you have requested with options.
grep can simply be invoked: $ grep ‘STRING’ filename
