mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
10 lines
172 B
Awk
10 lines
172 B
Awk
|
# $Id: count.awk,v 10.2 1999/11/21 18:01:42 bostic Exp $
|
||
|
#
|
||
|
# Print out the number of log records for transactions that we
|
||
|
# encountered.
|
||
|
|
||
|
/^\[/{
|
||
|
if ($5 != 0)
|
||
|
print $5
|
||
|
}
|