#!/usr/bin/awk -f $7 !~ /GET/ || $10 != 200 { next } $8 !~ /\/*\.[^.]*$/ || $8 ~ /\.html$/ { ps[$8]++ } END { for (p in ps) print p" "ps[p] }