Usually when using Grep I'm looking for a specific match or pattern, so use the standard:
grep search_term file
The ever great piping system means you can come up with some very flexible queries but today I really needed to exclude multiple matches from my results and here is how to do it:
grep -v -e searchTermOne -e searchTermTwo -e searchTermThree