Skip to content

Instantly share code, notes, and snippets.

@leonlaser
Created March 18, 2019 12:39
Show Gist options
  • Save leonlaser/10515130aee9daf095c473b1eaa12896 to your computer and use it in GitHub Desktop.
Save leonlaser/10515130aee9daf095c473b1eaa12896 to your computer and use it in GitHub Desktop.
[Count IPs from apache access log] #apache #accesslog #log #ip #bash #tail #sort #uniq
#!/bin/bash
tail -n10000 $logfile | cut -f3 -d' ' | sort | uniq -c | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment