Skip to content

Instantly share code, notes, and snippets.

@szz
Created August 13, 2013 06:03
Show Gist options
  • Select an option

  • Save szz/6218264 to your computer and use it in GitHub Desktop.

Select an option

Save szz/6218264 to your computer and use it in GitHub Desktop.
list top 50 404's in descending order.
awk '$9 == "404" {print $7}' access.log |sort|uniq -c|sort -rn| head -n 50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment