Skip to content

Instantly share code, notes, and snippets.

@cmpscabral
Created January 14, 2016 15:40
Show Gist options
  • Save cmpscabral/0234a349e03ac0a6b3e3 to your computer and use it in GitHub Desktop.
Save cmpscabral/0234a349e03ac0a6b3e3 to your computer and use it in GitHub Desktop.
order access.log lines by IP
cat access.log | awk '{print $1}' | sort -n | uniq -c | sort -nr | head -20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment