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