04Feb 2005 Apache : Hit count by troyski ⋅ Leave a Comment Here’s a quick way of producing a hit count from the apache access_log file… cat access_log | awk ‘{print $4}’ | cut -c13-19 | sort | uniq -c