fgrep
Search file(s) for lines that match a fixed string
SYNTAX fgrep <options> ... fgrep is the same as `grep -F' all other options are the same as grep
It's a popular fallacy that `fgrep' stands for fast-grep.
In fact `fgrep' means fixed-string grep, it has no performance boost
over `grep'
"The knowledge imposes a pattern, and falsifies, For the pattern is new in
every moment..." - T. S. Eliot
Related Linux Bash commands:
egrep - Search file(s) for lines that match an extended
expression
gawk - Find and Replace text within file(s)
grep - Search file(s) for lines that match a given pattern
Equivalent Windows XP commands:
FIND - Search for a text string in a file
FINDSTR - Search for strings in files
MUNGE - Find and Replace text within file(s)