1# $Id: count.awk,v 12.0 2004/11/17 03:43:24 bostic Exp $
2#
3# Print out the number of log records for transactions that we
4# encountered.
5
6/^\[/{
7	if ($5 != 0)
8		print $5
9}
10