I use the below command to determine who has been to a particular site but what would I need to add to determine how many times they did visit that site.
grep givensite.com /var/log/squid/access-02-13-04.log |tr -s ' ' | cut -d' ' -f3 |sort -n|uniq Jim
