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