Show IP addresses in Apache logfiles
awk '{ print $1}' /path/to/access.log | sort | uniq -c | sort -nr > report.txt
Page 1 of 1.
awk '{ print $1}' /path/to/access.log | sort | uniq -c | sort -nr > report.txt