Tagged Questions
0
votes
0answers
121 views
Grep only shows last match
I've got a problem with grep.
When I use it as followed, it only shows the last match in every line and what follows after it.
For example:
If I use
tail -F example.log | grep -a -i -e "word1" -e ...
6
votes
1answer
120 views
Highlighting with grep doesn't work in Xterm
I've got a problem with Xterm.
When I use the command
tail -F example.log | grep -a -i -e 'examplestring'
in Xterm the "grepped" strings aren't highlighted in red like they would be in the normal ...
9
votes
3answers
2k views
GUI for watching logs (tail and grep)
Could you recommend a GUI application with powerful log watching capabilities?
Generally it would work as tail -f in GUI, but on top of that following features would be very useful:
filtering out ...
11
votes
4answers
558 views
Tailing two log files
I have a web application that outputs to a number of log files with performance information. One log file outputs code execution times and another outputs SQL timings. I have no control over the ...