Simple use of tail & grep. Multiple conditions

6

8

Apologies for my ignorance, I'm fairly new to this.

I'm trying to read a log file which is being written to by a simple daemon. What I would like to do is filter my "live" output to certain - multiple - "types".

My types are: DEBUG|INFO|WARN|ERROR|FATAL

This is what I have so far, and it works for 1 case, I cannot get it working for multiple cases though.

tail -f log.txt | grep INFO

I've tried a couple things to try and say I want "WARN's & ERROR's" but nothing is really working for me. How would I correct this?

Thanks

Mike

Posted 2009-10-23T15:05:50.897

Reputation: 515

Answers

15

try

tail -f log.txt | egrep 'WARN|ERROR'

Doug Harris

Posted 2009-10-23T15:05:50.897

Reputation: 23 578

2+1 grep -E also works. – quack quixote – 2009-10-23T15:23:44.160

2

In addition to switching to egrep/grep -E to get the alternation operator of extended regular expressions, you can you can also use multiple -e arguments to regular grep or even fgrep/grep -F

In fact, if your searches are all static strings (like the original question), you can even ‘downgrade’ all the way to fgrep/grep -F which might give a speed boost (since it always does direct string comparisons without regexps).

fgrep -e DEBUG -e INFO -e WARN -e ERROR -e FATAL

Also POSIX allows patterns to be separated by newlines.

# bash-ish to put a newlines into the string
fgrep $'DEBUG\nINFO\nWARN\nERROR\nFATAL'

# Standard syntax, but easier to break while editing(?):
fgrep "$(for f in DEBUG INFO WARN ERROR FATAL; do echo "$f"; done)"

Chris Johnsen

Posted 2009-10-23T15:05:50.897

Reputation: 31 786

0

This also works (regular grep and escape the pipe character):

tail -f log.txt | grep 'WARN\|ERROR'

Paused until further notice.

Posted 2009-10-23T15:05:50.897

Reputation: 86 075

That is a GNU extension to the syntax of basic regular expressions, it probably won't work for non-GNU greps. It is more portable to use egrep or grep -E and the non-escaped alternation marker (pipe). – Chris Johnsen – 2009-10-23T20:05:43.750