Answers for "grep more than one word"

2

bash print lines that match any of several words

# Basic syntax:
grep 'word1\|word2\|word3' /path/to/file
# This prints all lines that match word1, word2, OR, word3
Posted by: Guest on October-04-2020

Code answers related to "grep more than one word"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language