libdb/util/db_printlog/count.awk

10 lines
122 B
Awk
Raw Normal View History

# $Id$
#
# Print out the number of log records for transactions that we
# encountered.
/^\[/{
if ($5 != 0)
print $5
}