Tips and tricks...
Tailing several files...
Sun, 11/05/2006 - 00:49 — sandipI 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/http d/*log
If you only want to see the 404 errors:
$ tail -f /home/virtual/*.*/var/log/http d/*log | grep " 404 "
- sandip's blog
- Login or register to post comments
- « first
- ‹ previous
- 1
- 2
- 3
- 4