DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Find Ip Addresses In Apache Logs
The below will generate a list of IP address along with the number of times each was encountered sorted with the greatest number at the bottom.
cat access_log | awk '{print $1}' | sort | uniq -c | sort -n





