Things I want to remember.

Filed under Code.

Show IP addresses in Apache logfiles

awk '{ print $1}' /path/to/access.log | sort  | uniq -c  | sort -nr > report.txt

Page 1 of 1.