Skip to content

Instantly share code, notes, and snippets.

@gsouf
Created June 26, 2017 07:44
Show Gist options
  • Save gsouf/8634874aca7cf3cbd321595dc6408239 to your computer and use it in GitHub Desktop.
Save gsouf/8634874aca7cf3cbd321595dc6408239 to your computer and use it in GitHub Desktop.
Aggregate apache logfile by useragent
awk -F\" '{arr[$6]++}END{for(a in arr) print arr[a], a}' access.log | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment