Skip to content

Instantly share code, notes, and snippets.

@Bogdaan
Created November 1, 2016 08:19
Show Gist options
  • Select an option

  • Save Bogdaan/e90000a31d65606c954fdb7a35996448 to your computer and use it in GitHub Desktop.

Select an option

Save Bogdaan/e90000a31d65606c954fdb7a35996448 to your computer and use it in GitHub Desktop.
Access log referal links
#!/bin/bash
grep "200 " access.log \
| cut -d '"' -f 4 \
| sort \
| uniq -c \
| sort -rn \
| grep -v "YOURDOMAIN.COM" \
| less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment