Skip to content

Instantly share code, notes, and snippets.

@thattommyhall
Created April 4, 2012 13:37
Show Gist options
  • Select an option

  • Save thattommyhall/2301094 to your computer and use it in GitHub Desktop.

Select an option

Save thattommyhall/2301094 to your computer and use it in GitHub Desktop.
Find 404s in apache logs
awk '$9 == 404 {print $7}' access.log | uniq -c | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment