Skip to content

Instantly share code, notes, and snippets.

@mrpatrick
Created July 1, 2015 14:47
Show Gist options
  • Save mrpatrick/bd26a1b49d713c538ef7 to your computer and use it in GitHub Desktop.
Save mrpatrick/bd26a1b49d713c538ef7 to your computer and use it in GitHub Desktop.
Find all robot user agents in logs, sort by hits
cat access_log | awk -F\" '{print $6}' | sort | uniq -c | sort -n |grep bot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment