Skip to content

Instantly share code, notes, and snippets.

@aerostitch
Created August 13, 2018 21:44
Show Gist options
  • Save aerostitch/1d10d29eb92d302c719b5dbb4e913dbd to your computer and use it in GitHub Desktop.
Save aerostitch/1d10d29eb92d302c719b5dbb4e913dbd to your computer and use it in GitHub Desktop.
# reports the number of occurences of an IP in aws ELB access logs files
awk '{match($3, /(.*):.*/,arr);k=arr[1];if(k in counter){counter[k]++}else{counter[k]=1}} END {for(i in counter){printf "%d \t %s\n",counter[i],i}}' *.log | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment