mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-06 09:30:06 +00:00
ec239360d1
* db2/Makefile (distribute): Remove files which do not exist anymore.
10 lines
156 B
Awk
10 lines
156 B
Awk
# @(#)count.awk 10.1 (Sleepycat) 11/1/98
|
|
#
|
|
# Print out the number of log records for transactions that we
|
|
# encountered.
|
|
|
|
/^\[/{
|
|
if ($5 != 0)
|
|
print $5
|
|
}
|