vote up 2 vote down star

I am writing a shell script to do a "tail" on a growing log file. This script accepts parameters to search for, and incrementally greps the output on them.

For example, if the script is invoked as follows:

logs.sh string1 string2

it should translate to:

tail -f logs.txt | grep string1 | grep string2

I am building the list of grep strings like this:

full_grep_string=""
for grep_string in $*
do
    full_grep_string="$full_grep_string | grep $grep_string" 
done

The string is built correctly, but when I try to finally tag it to the tail command, like so...

tail -f $LOG_FILE_PATH $full_grep_string

...the grep does not apply, and I get the unfiltered logs.

Am I missing something here? Or is there an easier way to do this?

flag
Just a small clarification: Is the idea that your script should output the lines of the log file that contains BOTH string1 and string2, or was your intention to find lines containing any of the strings? – Anders Lindahl Jul 8 at 9:29
Also, what shell are you using? bash? – Anders Lindahl Jul 8 at 9:31
for me on debian lenny I've to face the problem that two grep combined do not work with tail -f but with just tail – tuergeist Jul 8 at 9:41
@Andreas: I suggest he want's to find both, otherwise the combined greps are useless and he could use egrep "string1|string2" – tuergeist Jul 8 at 9:42

2 Answers

vote up 2 vote down check
eval tail -f $LOG_FILE_PATH $full_grep_string
link|flag
It worked! Thanks! :) – phanindrak Jul 8 at 10:16
vote up 1 vote down

grep buffers the line it found. So modifying your code to

full_grep_string="$full_grep_string | grep --line-buffered $grep_string"

shall work. I tested it on debian lenny (with bash).

And use the tip of an0

eval tail -f ...

(All this works for whole words)

link|flag
Thanks for the tip.. but it looks like my version of grep is too old to take full word arguments. I'm testing on a SunOS 5.8 box, btw. Very old software. :) – phanindrak Jul 8 at 10:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.