#!/bin/bash
zcat ~/logs/chadlindstrom.ca/http/access.log*.gz | awk '{if($7 ~ /contact/ && $7 ~ /submit/) {print $0}}' >> ~/reports/spammer.log

