Skip to content

Instantly share code, notes, and snippets.

@MikeNGarrett
Created November 18, 2015 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikeNGarrett/8ca695ce97704d63a7dc to your computer and use it in GitHub Desktop.
Save MikeNGarrett/8ca695ce97704d63a7dc to your computer and use it in GitHub Desktop.
Go and get the most frequent 404s
grep "HTTP/1.1\" 404" access.log | awk '{print $7 } ' | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment