#!/bin/sh
# Give alphabet. list all IP/ domain visiting your site
# and how many hits from that site.
# SYNTAX: pul  name_of_the_LOG_File
 
#cat access_log | cut -f1 "-d " | sort | uniq -c

cat $1 | awk '{print $1}' | sort | uniq -c
