List all ips address from apache access log

grep Apr/2014 /var/log/apache2/access.log |  awk '{ print $1 }' | sort -n | uniq -c | sort -rn 
Tushar