mirror of
https://github.com/percona/percona-toolkit.git
synced 2026-05-06 01:01:24 +08:00
22 lines
283 B
Awk
Executable File
22 lines
283 B
Awk
Executable File
#!/usr/bin/awk -f
|
|
|
|
BEGIN {
|
|
if ( version == "" ) {
|
|
print "Usage: log-entries VERSION"
|
|
exit
|
|
}
|
|
|
|
start = "^v" version
|
|
}
|
|
|
|
$0 ~ start {
|
|
while ( getline ) {
|
|
if ( $0 ~ /^v[0-9]/ )
|
|
exit
|
|
if ( $0 ~ /^$/ )
|
|
continue
|
|
|
|
print
|
|
}
|
|
}
|