#!/bin/sh # # LOGCHECK: Return a list of all current referrers to the site. # Defaults to the last 4000 hits or so. LOG="/weblogs/ascii.access_log" BACK=4000 if [ "$1" ] then BACK=$1 fi echo "---------------------------------------" echo "Referrers since `tail -$BACK $LOG | head -1 | cut -f4 -d' ' | sed 's/\[//g'`" echo "---------------------------------------" tail -$BACK $LOG | cut -f11 -d" " | sort | grep -v ascii.textfiles.com | grep -v google.com | uniq -c | sort -n