You're now viewing all of my posts relating to CodeSnippets. Enjoy!

User agents from lighttpd access_log

Here's a simple way to figure out your UserAgents from a lighttpd access_log file.

cat /var/log/lighttpd/access.log | cut --delimiter="\"" -f6 | sort | uniq -c | sort -n