Matching Mutiple Keywords with grep

This command is useful for search through log files. Where you want to match two keywords

Contents of the file test.txt

windows
linux windows
windows linux
nothing

This egrep command only matches linux windows

egrep "\<linux\>.*\<windows\>" test.txt

Leave a Reply

Your email address will not be published. Required fields are marked *