View the 10 IPs with the most access
A “recipe” to keep on hand: cat fichero.log | \ awk '{print $1}' | \ sort | \ uniq -c | \ sort -n | \ tail -10
A “recipe” to keep on hand: cat fichero.log | \ awk '{print $1}' | \ sort | \ uniq -c | \ sort -n | \ tail -10