My complete most popular list can be found here.
The command chain I used to analyze my access logs is as follows:
cat /var/log/httpd/mark.koli.ch-access_log* | awk '{print $7}' | \
grep html | grep -v "mt-static" | grep -v tracker | \
sort | uniq -c | sort --reverse -n | tee ~/popular.txt
This command produces a text file that looks something like this:
42 /2008/10/first-post.html
41 /2008/12/initial-implementation-of-gagawa-in-php-now-available.html
37 /2009/01/follow-up-four-more-reasons-why-i-dislike-facebook-and-myspace.html
36 /2008/10/obamas-prime-time-ad-skips-over-budget-realities.html
34 /2008/12/howto-recursively-delete-directories-on-windows.html
33 /2009/01/jpandmeghancom-a-work-of-css-art.html
I then wrote this PHP script which uses Gagawa to read the text file output and create a nice HTML template of the results. Enjoy.


Did you find this post helpful, or at least, interesting?