> 
> I am curious though, what are you using to tabulate the results you've posted?
> 
I use bash to dredge my access logs in /var/log/httpd. It amazing what
you can do with grep, sort, uniq, sed, for loops, cut, and bc. For example:

cat access* | grep XXX | cut -d" " -f1 | sort -u  | grep -c .  

gives you the number of unique hits in all your access logs.
Once you get the hang of it, doing things in a spread sheet seems so retro.

Joel

_______________________________________________
http://linux.nf -- [EMAIL PROTECTED]
Archives, Subscribe, Unsubscribe, Digest, Etc 
->http://linux.nf/mailman/listinfo/linux-users

Reply via email to