У меня есть файл, содержащий различные строки журнала, и я хочу grep
для шаблона, но исключаю, когда message:com.mycompany.excluded
, поэтому в основном должно быть возвращено следующее:
"The log found this message blah, message:com.blahblah"
"The log found this message blah2, message:com.blahblah2"
"The log found this message foobar, message:com.mycompany"
"The log found this message blah, message:com.mycompany.included"
, но не:
"The log found this message blah, message:com.mycompany.excluded"
Я использую этот шаблон, но он не будет работать для исключения com.mycompany.excluded
grep "The log found this message.*message:.*" "mylogs.txt"