Skip to content

Instantly share code, notes, and snippets.

@ntddk
Created December 11, 2014 09:43
Show Gist options
  • Save ntddk/9c78e2a05c55c377992c to your computer and use it in GitHub Desktop.
Save ntddk/9c78e2a05c55c377992c to your computer and use it in GitHub Desktop.
#!/bin/sh
awk '{print $1, $4"]", $7}' access_log.txt | grep -v "/$" | uniq -c | sort > log.txt
awk '{print $4"]"}' access_log.txt | uniq -c | sort -r | tail -308 > trank.txt
awk '{print $11}' access_log.txt | grep -v - | sort | uniq -c | sort -r | tail -308 > accessrank.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment