Skip to content

Instantly share code, notes, and snippets.

@acapps
Created September 20, 2016 05:29
Show Gist options
  • Save acapps/b925442515e64ec1d32699491dff5e24 to your computer and use it in GitHub Desktop.
Save acapps/b925442515e64ec1d32699491dff5e24 to your computer and use it in GitHub Desktop.
Query Access Logs, but ignore the noise, css, img, js.
cat access.log.2016-09-18 | grep '{search_term}' | grep -v '/css' | grep -v '/js' | grep -v '/img'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment