mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
9 lines
122 B
Awk
9 lines
122 B
Awk
# $Id$
|
|
#
|
|
# Print out the number of log records for transactions that we
|
|
# encountered.
|
|
|
|
/^\[/{
|
|
if ($5 != 0)
|
|
print $5
|
|
}
|