Skip to content

Instantly share code, notes, and snippets.

@faboo03
Last active December 14, 2015 03:49
Show Gist options
  • Save faboo03/5023569 to your computer and use it in GitHub Desktop.
Save faboo03/5023569 to your computer and use it in GitHub Desktop.
Parse Access Log and get all access lines
# Regarde toutes les URLS appellées :
grep -a access.log |awk '{print $8}'| sort |uniq -c | sort -rn
# Regarde toutes les URLS appellées pour le sous domaine widgets
grep -a access.log -e ^widget.tournikoti.com |awk '{print $8}'| sort |uniq -c | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment