Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. cat ibgplay.access.log | awk ' { sub(/.* - - .* \".*\" .* .* \".*\" /, ""); gsub(/\"/, ""); if ($0 !~ /(Safari)|(Chrome)|(MSIE)|(Firefox)/) array[$0]++; else { if ($0 ~ /Safari/) array["Safari"]++; if ($0 ~ /Chrome/) array["Chrome"]++; if ($0 ~ /MSIE/) array["MSIE"]++; if ($0 ~ /Firefox/) array["Safari"]++; } } END { for (i in array) { printf("%d %s\n", array[i], i) | "sort -k 1nr"; } }'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement