Linux – Sort unique IP from Apache log and count entries May 18, 2017LinuxPF Usefull! cat /path/access.log | awk '{print $1}' | sort -n | uniq -c | sort -nr | head -50