bash print lines that match any of several words

C++
# Basic syntax:
grep 'word1\|word2\|word3' /path/to/file
# This prints all lines that match word1, word2, OR, word3
Source

Also in C++: