Last active
December 14, 2015 03:49
-
-
Save faboo03/5023569 to your computer and use it in GitHub Desktop.
Parse Access Log and get all access lines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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