Created
November 18, 2015 22:50
-
-
Save MikeNGarrett/8ca695ce97704d63a7dc to your computer and use it in GitHub Desktop.
Go and get the most frequent 404s
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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