Using OR Operator

Sample file,

cat fruits.txt
yellow bananas
green apples
red oranges
red apples

Using OR operator in grep search. Note you need a somewhat current version of grep (you are out of luck with Solaris),

grep 'apples\|oranges' fruits.txt
green apples
red oranges
red apples