This is Ubuntu (3.13.0-29-generic #53), trying to do a simple bash script to monitor a log file for matching lines.
If I do the following, there is no output in the bash shell except for matches, which is expected:
tail -F server.log | grep --line-buffered "word" | tee -a wordwatch.log
But if I try to do the same thing in a screen, the session is spammed with unmatched data from the watched log file. Apparently it's showing everything from the watched log file. This spam does not appear in the output log file.
screen -S "wordwatch" tail -F server.log | grep --line-buffered "word" | tee -a wordwatch.log
What am I doing wrong and how do I stop the watched log from spamming the screen session?
When you launch the pipe such way:
then only
tail -F server.log
is launched withinscreen
and all the rest is connected to thescreen
, not thetail
.Therefore you should invoke your bash script that works already:
The other approach is to launch the shell explicitly and pass all the line to it:
Also the other good way to watch logs with screen - is the special config:
screen
should be invoked like that:To exit just press
<CTRL-A><CTRL-\>
and confirm.