209.19.170.94 - - [21/Jun/2000:00:06:04 -0400] "GET /ob/html/meet.html HTTP/1.1" 200 5933 "http://www.stuff.com/ob/" "Mozilla/4.0 (compatible; MSIE 5.0; Mac_PowerPC)" #### #! /usr/bin/perl -w open(FILE, "/logs/000604access.log"); while () { ($client,$identuser,$authuser,$date,$tz,$method,$url,$protocol,$status,$bytes,$refer,$platform,$extendedinfo) = /^(\S+) ( \S+) (\S+) \[(\S+) (\S+)\] "(\S+) (\S+) (\S+)" (\S+) (\S+) "(\S+)" "(\S) (.*?)"$/; ### do some schmacity with variables } close FILE; exit;