#!/bin/csh -f # watchlog # ----------------------------------------------------------------------------- # C shell script to watch the HTTP server logs at my web site, optionally # filtering to show only lines with a specific word or phrase. # ----------------------------------------------------------------------------- # Revision History: # $Log$ # ----------------------------------------------------------------------------- if ($#argv == 0) then trident acctail_filter else trident acctail_filter_grep -i $*:q endif