Skip to content

Instantly share code, notes, and snippets.

@timbutler
Created November 3, 2014 00:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timbutler/46e54e19efe19fea2faf to your computer and use it in GitHub Desktop.
Save timbutler/46e54e19efe19fea2faf to your computer and use it in GitHub Desktop.
Work out the most commonly called URL's in an Apache logfile
awk '{print $7}' access_log|cut -d? -f1|sort|uniq -c|sort -nk1|tail -n10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment