Tipsheet

Tips and tricks...

Tailing several files...

I wasn't aware you could tail several files until I had to find a way to track what was going on all the virtual web sites:

$ tail -f /home/virtual/*.*/var/log/httpd/*log

If you only want to see the 404 errors:

$ tail -f /home/virtual/*.*/var/log/httpd/*log | grep " 404 "

Comment