Skip to content

Instantly share code, notes, and snippets.

@l0neranger
Created September 18, 2014 16:42
Show Gist options
  • Save l0neranger/da1322517760df5af73c to your computer and use it in GitHub Desktop.
Save l0neranger/da1322517760df5af73c to your computer and use it in GitHub Desktop.
# of requests in Apache access log by ip
#!/bin/bash
awk '{ print $1 } ' access.log | uniq -c | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment