Use grep with tail

When debugging, if you are tailing a log file that has way too much output, don't forget about the trusty grep:

tail -f log.txt|grep "stuff I care about"

or:

tail -f log.txt|grep -v "stuff I don't care about"
blog comments powered by Disqus