Notepad 1 min read 28 words

View the 10 IPs with the most access

ES
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